:root {
  --bg: #07101d;
  --bg-2: #0b1625;
  --surface: #0f1c2f;
  --surface-2: #12233a;
  --surface-3: #162b45;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(124, 195, 234, 0.18);

  --text: #edf3fb;
  --muted: #9eaec4;
  --muted-2: #7f90a8;

  --blue: #7cc3ea;
  --blue-2: #4da6dc;
  --violet: #6d4de0;
  --violet-2: #8e74eb;

  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.28);

  --max: 1180px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(124, 195, 234, 0.08), transparent 24%),
    radial-gradient(circle at 15% 0%, rgba(109, 77, 224, 0.12), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 16, 29, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.brand-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
  opacity: 0.98;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  font-size: 0.95rem;
  opacity: 0.92;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1120px) {
  .brand-logo {
    width: 240px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.92rem;
  }
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.hero-grid > *,
.signal-window,
.signal-window-body,
.feature-card,
.value-item,
.pricing-card,
.resource-card {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.hero-text,
.section-head p,
.feature-card p,
.value-item p,
.cta-copy p,
.footer-copy,
.hero-meta,
.signal-label,
.signal-key,
.signal-value {
  color: var(--muted);
}

.hero-text {
  max-width: 760px;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2) 0%, var(--blue) 100%);
  color: #07101d;
  border-color: rgba(124, 195, 234, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.signal-window {
  width: 100%;
  max-width: 470px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.96) 0%, rgba(10, 20, 34, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.signal-window-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.signal-window-body {
  padding: 22px;
}

.signal-label {
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: var(--blue);
}

.signal-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-row:last-child {
  border-bottom: none;
}

.signal-key {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--muted-2);
}

.signal-value {
  font-size: 0.97rem;
  color: var(--text);
}

.mono {
  font-family: Consolas, Monaco, monospace;
  word-break: break-word;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.pill-high {
  background: rgba(239, 68, 68, 0.14);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-band {
  padding-top: 0;
  padding-bottom: 0;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  max-width: 830px;
  margin-bottom: 34px;
}

.resource-promo-section {
  padding-top: 58px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.resource-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.resource-promo h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.resource-promo p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
}

.resource-promo-link {
  max-width: 330px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ghost-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: center;
}

.ghost-explainer-copy p {
  color: var(--muted);
  max-width: 760px;
}

.redirect-path {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.9) 0%, rgba(10, 20, 34, 0.98) 100%);
  box-shadow: var(--shadow-md);
}

.redirect-step {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.redirect-step span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redirect-step strong {
  display: block;
  color: var(--text);
  font-family: Consolas, Monaco, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-word;
}

.redirect-step-risk {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.08);
}

.redirect-arrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.feature-card,
.value-item,
.cta-panel,
.faq-item {
  background:
    linear-gradient(180deg, rgba(15, 28, 47, 0.95) 0%, rgba(11, 22, 37, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.feature-card,
.value-item,
.faq-item {
  padding: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.proof-copy p {
  color: var(--muted);
  max-width: 720px;
}

.banshee-alert {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.96) 0%, rgba(9, 18, 31, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.banshee-alert-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.banshee-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banshee-alert-top h3 {
  margin: 0;
  font-size: 1.45rem;
}

.banshee-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.banshee-metrics div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.banshee-metrics div:last-child {
  border-right: none;
}

.banshee-metrics span,
.banshee-field span,
.banshee-summary span,
.banshee-actions span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banshee-metrics strong,
.banshee-field strong,
.banshee-actions strong {
  color: var(--text);
  font-size: 0.95rem;
}

.banshee-fields {
  display: grid;
}

.banshee-field {
  padding: 17px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.banshee-field strong {
  display: block;
  font-family: Consolas, Monaco, monospace;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.banshee-summary,
.banshee-actions {
  padding: 20px 24px;
}

.banshee-summary {
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.banshee-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.banshee-actions strong {
  display: block;
  line-height: 1.55;
}

.feature-number {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 16px;
}

.product-tour {
  overflow: hidden;
}

.product-shot {
  margin: 0;
}

.product-shot-primary {
  margin-bottom: 26px;
}

.product-shot-primary .product-shot-frame,
.product-shot-primary figcaption {
  width: min(100%, 1029px);
  margin-left: auto;
  margin-right: auto;
}

.product-shot-frame {
  overflow: hidden;
  border: 1px solid rgba(142, 191, 238, 0.2);
  border-radius: 8px;
  background: #07101d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.product-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.product-shot figcaption {
  display: grid;
  gap: 5px;
  padding-top: 14px;
}

.product-shot figcaption strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.product-shot figcaption span,
.product-tour-note {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.product-tour-note {
  margin: 28px 0 0;
  font-size: 0.88rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.pricing-copy p {
  max-width: 720px;
  color: var(--muted);
}

.pricing-notes {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.pricing-notes div,
.pricing-callout {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.pricing-notes strong,
.pricing-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.pricing-notes span,
.pricing-callout span,
.pricing-summary,
.pricing-fineprint {
  color: var(--muted);
}

.pricing-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.96) 0%, rgba(9, 18, 31, 0.98) 100%);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-kicker {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.pricing-price {
  flex: 0 0 auto;
  text-align: right;
}

.pricing-price span {
  display: block;
  color: var(--text);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-price small {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-summary {
  margin: 20px 0;
  line-height: 1.7;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #88c1ff, #5aa5ff);
  box-shadow: 0 0 0 4px rgba(90, 165, 255, 0.14);
  transform: translateY(-50%);
}

.pricing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.checkout-form {
  margin-top: 24px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-grid .trial-field:last-child {
  grid-column: 1 / -1;
}

.trial-field select,
.trial-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-size: 0.98rem;
  line-height: normal;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.trial-field select {
  height: 54px;
  padding: 0 16px;
}

.trial-field select option {
  background: #ffffff;
  color: #07101d;
}

.trial-field textarea {
  min-height: 154px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.55;
}

.trial-field select:focus,
.trial-field textarea:focus {
  border-color: rgba(101, 168, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(90, 165, 255, 0.14);
}

.trial-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.checkout-status {
  min-height: 22px;
  margin-top: 14px;
  font-size: 0.94rem;
  color: #93d2ff;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 34px;
  align-items: start;
}

.onboarding-section {
  display: none;
}

.onboarding-section.is-visible {
  display: block;
}

.onboarding-copy p {
  max-width: 720px;
  color: var(--muted);
}

.onboarding-card {
  padding: 30px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 35, 58, 0.96) 0%, rgba(9, 18, 31, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.onboarding-card.is-complete {
  border-color: rgba(34, 197, 94, 0.34);
}

.onboarding-card.is-complete input,
.onboarding-card.is-complete textarea,
.onboarding-card.is-complete button {
  opacity: 0.58;
  cursor: not-allowed;
}

.pricing-fineprint {
  margin: 18px 0 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.cta-section {
  padding-top: 18px;
  padding-bottom: 88px;
}

.cta-panel {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  opacity: 0.96;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-copy,
.footer-right a {
  color: var(--muted);
}

.footer-right a:hover {
  color: var(--text);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-section {
  padding-top: 96px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.legal-copy h2 {
  margin: 34px 0 10px;
  font-size: 1.2rem;
}

.legal-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-updated {
  margin-top: 0;
  font-size: 0.95rem;
}

/* ===== Resources ===== */

.resource-hero,
.article-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.018);
}

.audience-band {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(124, 195, 234, 0.035);
}

.audience-band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
}

.audience-band h2 {
  max-width: 570px;
  margin: 0;
  font-size: 1.65rem;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span {
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: rgba(15, 28, 47, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
}

.resource-hero-inner {
  max-width: 900px;
  padding-top: 96px;
  padding-bottom: 74px;
}

.resource-hero h1,
.article-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.resource-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.resource-list-section {
  padding-top: 64px;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 20px;
}

.resource-grid-all {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-grid-all .resource-card-featured {
  grid-column: 1 / -1;
}

.resource-card {
  padding: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(15, 28, 47, 0.78);
}

.resource-card-meta,
.article-summary-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.resource-card h2 a {
  color: var(--text);
}

.resource-card p,
.resource-topic p {
  color: var(--muted);
}

.resource-card-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
  font-weight: 700;
}

.resource-upcoming {
  margin-top: 72px;
}

.resource-topic-grid,
.article-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-topic {
  padding-top: 20px;
  border-top: 1px solid var(--border-strong);
}

.resource-topic h3 {
  font-size: 1.05rem;
}

.resource-topic p {
  margin-bottom: 0;
}

.resource-cta-section {
  padding-top: 8px;
}

.article-hero-inner {
  max-width: 980px;
  padding-top: 72px;
  padding-bottom: 62px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 42px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.article-hero h1 {
  max-width: 960px;
}

.article-deck {
  max-width: 850px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 90px;
}

.article-summary {
  position: sticky;
  top: 118px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.article-summary a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.article-summary a:hover {
  color: var(--blue);
}

.article-body {
  min-width: 0;
}

.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.82;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body .article-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.article-body section {
  scroll-margin-top: 120px;
  padding-top: 34px;
}

.article-body h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.article-body h3 {
  font-size: 1.02rem;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-body code {
  color: #c8e8fb;
  font-family: Consolas, Monaco, monospace;
  overflow-wrap: anywhere;
}

.article-callout {
  margin: 30px 0 8px;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: rgba(124, 195, 234, 0.06);
}

.article-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 34px 0 8px;
  padding: 22px 24px;
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: rgba(15, 28, 47, 0.76);
}

.article-inline-cta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.article-inline-cta p {
  margin: 0;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
}

.article-callout p {
  margin-bottom: 0;
}

.article-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 34px 0 8px;
}

.article-path > div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.article-path span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-path strong {
  display: block;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.article-path .article-path-arrow {
  margin: 0;
  color: var(--blue);
  font-size: 1.15rem;
}

.article-path .article-path-risk {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.07);
}

.article-check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0;
}

.article-check-grid > div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.article-check-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 60px;
  padding: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(15, 28, 47, 0.82);
}

.article-cta h2 {
  margin-bottom: 10px;
}

.article-cta p {
  margin-bottom: 0;
}

.article-disclaimer {
  margin-top: 20px !important;
  color: var(--muted-2) !important;
  font-size: 0.85rem;
}

.comparison-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}

.comparison-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.88rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.related-resources {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.related-resources .article-summary-label {
  margin-bottom: 2px;
}

.related-resources a {
  width: fit-content;
  font-weight: 600;
}

@media (max-width: 980px) {

  .hero-grid,
  .feature-grid-3,
  .feature-grid-2,
  .why-grid,
  .product-shot-grid,
  .ghost-explainer,
  .proof-grid,
  .pricing-layout,
  .onboarding-layout,
  .faq-grid,
  .trust-band-inner,
  .resource-promo,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .banshee-metrics {
    grid-template-columns: 1fr;
  }

  .banshee-metrics div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .banshee-metrics div:last-child {
    border-bottom: none;
  }

  .header-inner,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .hero {
    padding-top: 68px;
    padding-bottom: 52px;
  }

  .brand-logo {
    width: 220px;
  }

  .resource-promo-link {
    max-width: none;
    justify-self: start;
  }

  .article-summary {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
  }

  .audience-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .article-summary-label {
    grid-column: 1 / -1;
  }

  .article-layout {
    gap: 38px;
  }

  .resource-grid-all {
    grid-template-columns: 1fr;
  }

  .resource-grid-all .resource-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-inner {
    gap: 14px;
    padding: 12px 0;
  }

  .nav {
    width: calc(100% + 24px);
    margin: 0 -12px;
    padding: 0 12px 6px;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .brand-logo {
    width: 205px;
  }

  .hero {
    padding-top: 50px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .signal-window-body {
    padding: 18px;
  }

  .hero-actions,
  .cta-actions,
  .pricing-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }  

  .pricing-card {
    padding: 22px;
  }

  .pricing-card-top {
    flex-direction: column;
  }

  .pricing-price {
    text-align: left;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-card {
    padding: 22px;
  }

  .resource-hero-inner,
  .article-hero-inner {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .resource-card {
    padding: 22px;
  }

  .resource-topic-grid,
  .article-check-grid,
  .article-summary {
    grid-template-columns: 1fr;
  }

  .article-path,
  .article-cta,
  .article-inline-cta {
    grid-template-columns: 1fr;
  }

  .article-path .article-path-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .article-cta {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    gap: 10px 16px;
  }
}

/* First tracked acquisition campaign and trusted-link inventory worksheet */
.campaign-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
}

.campaign-hero-inner {
  max-width: 1000px;
  padding-top: 88px;
  padding-bottom: 72px;
}

.campaign-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1.04;
}

.campaign-hero p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
}

.campaign-actions,
.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.campaign-scope {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 0.88rem;
}

.campaign-proof {
  padding: 0 0 72px;
  background: rgba(255, 255, 255, 0.018);
}

.campaign-proof img {
  display: block;
  width: 100%;
  max-height: 680px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.campaign-proof p {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 0.84rem;
}

.campaign-audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 76px;
  align-items: start;
}

.campaign-audit-layout > div > p {
  color: var(--muted);
  line-height: 1.75;
}

.campaign-audit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign-audit-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.campaign-audit-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.campaign-audit-list li > span {
  color: var(--blue);
  font-family: Consolas, Monaco, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.campaign-audit-list strong {
  display: block;
  margin-bottom: 5px;
}

.campaign-audit-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.campaign-type-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.campaign-type-list > div {
  display: grid;
  gap: 7px;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--border);
}

.campaign-type-list > div:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.campaign-type-list span {
  color: var(--muted);
  line-height: 1.55;
}

.checklist-hero .article-hero-inner {
  padding-bottom: 52px;
}

.checklist-section {
  padding-top: 64px;
}

.checklist-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 780px);
  gap: 64px;
  justify-content: center;
}

.checklist-guide {
  align-self: start;
  padding-top: 4px;
}

.checklist-guide ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.checklist-guide p {
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.65;
}

.trusted-link-checklist {
  border-top: 1px solid var(--border-strong);
}

.trusted-link-checklist article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.checklist-number {
  color: var(--blue);
  font-family: Consolas, Monaco, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.trusted-link-checklist h2 {
  margin: 0 0 7px;
  font-size: 1.2rem;
}

.trusted-link-checklist p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.checklist-notes {
  min-height: 34px;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted-2);
  font-size: 0.78rem;
}

.checklist-inventory-section {
  padding-top: 34px;
}

.checklist-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
}

.checklist-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.checklist-table th,
.checklist-table td {
  min-width: 140px;
  height: 54px;
  padding: 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.checklist-table th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
}

.checklist-table th:last-child,
.checklist-table td:last-child {
  border-right: 0;
}

.checklist-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .campaign-hero h1 {
    font-size: 3.2rem;
  }

  .campaign-audit-layout,
  .checklist-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .campaign-audit-layout {
    max-width: 800px;
  }

  .checklist-guide {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .campaign-hero-inner {
    padding-top: 64px;
    padding-bottom: 52px;
  }

  .campaign-hero h1 {
    font-size: 2.45rem;
  }

  .campaign-hero p {
    font-size: 1.05rem;
  }

  .campaign-actions,
  .checklist-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .campaign-actions .btn,
  .checklist-actions .btn {
    width: 100%;
  }

  .campaign-proof {
    padding-bottom: 50px;
  }

  .campaign-type-list {
    grid-template-columns: 1fr;
  }

  .campaign-type-list > div,
  .campaign-type-list > div:nth-child(even) {
    padding: 20px 0;
    border-left: 0;
  }

  .campaign-audit-list li,
  .trusted-link-checklist article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .checklist-actions,
  .checklist-cta {
    display: none !important;
  }

  body,
  .site-shell,
  .article-hero,
  .checklist-section,
  .checklist-inventory-section {
    background: #ffffff !important;
    color: #111827 !important;
  }

  .article-hero-inner,
  .checklist-section,
  .checklist-inventory-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .article-hero h1,
  .article-deck,
  .checklist-guide p,
  .checklist-guide li,
  .trusted-link-checklist p,
  .checklist-number,
  .article-summary-label {
    color: #111827 !important;
  }

  .checklist-layout {
    display: block;
  }

  .checklist-guide {
    margin-bottom: 24px;
  }

  .trusted-link-checklist article {
    break-inside: avoid;
    padding: 14px 0;
    border-color: #cbd5e1;
  }

  .checklist-notes {
    border-color: #64748b;
  }

  .checklist-table-wrap {
    overflow: visible;
    border-color: #64748b;
  }

  .checklist-table {
    min-width: 0;
    font-size: 9px;
  }

  .checklist-table th,
  .checklist-table td {
    min-width: 0;
    height: 42px;
    padding: 6px;
    border-color: #94a3b8;
    color: #111827;
  }
}

/* ===== Try It Now / Premium Trial Form ===== */

  .trial-head {
    max-width: 860px;
  }

  .trial-audience {
    max-width: 960px;
    margin: -10px 0 30px;
  }

  .trial-audience p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
  }

  .trial-audience strong {
    color: var(--text);
  }

  .trial-audience-label {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .trial-audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .trial-audience-list span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(132, 186, 255, 0.18);
    border-radius: 8px;
    background: rgba(110, 168, 255, 0.07);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
  }

  .trial-shell {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: stretch;
  }

  .trial-info-card,
  .trial-form-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(17, 28, 53, 0.9), rgba(9, 16, 33, 0.96));
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
  }

  .trial-info-card::before,
  .trial-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0),
        rgba(132, 186, 255, 0.35),
        rgba(255, 255, 255, 0));
  }

  .trial-info-card {
    padding: 28px 28px 26px;
  }

  .trial-form-card {
    padding: 30px;
  }

  .trial-card-label,
  .trial-form-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(110, 168, 255, 0.12);
    border: 1px solid rgba(110, 168, 255, 0.2);
    color: #9bc7ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .trial-list {
    margin: 22px 0 20px;
    padding: 0;
    list-style: none;
  }

  .trial-list li {
    position: relative;
    margin: 0 0 14px;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
  }

  .trial-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #88c1ff, #5aa5ff);
    box-shadow: 0 0 0 4px rgba(90, 165, 255, 0.14);
    transform: translateY(-50%);
  }

  .trial-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
  }

  .trial-form-header {
    margin-bottom: 22px;
  }

  .trial-form-header h3 {
    margin: 14px 0 8px;
    font-size: 1.5rem;
    line-height: 1.15;
  }

  .trial-form-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
  }

  .trial-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trial-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .trial-field label {
    font-size: 0.94rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }

  .trial-field input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
    font-size: 0.98rem;
    line-height: normal;
    outline: none;
    box-sizing: border-box;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease,
      transform 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  .trial-field input::placeholder {
    color: rgba(255, 255, 255, 0.42);
  }

  .trial-field input:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .trial-field input:focus {
    border-color: rgba(101, 168, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(90, 165, 255, 0.14);
  }

  .optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.52);
  }

  .trial-checkbox {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    cursor: pointer;
  }

  .trial-consent-group {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .trial-checkbox {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.025);
  }

  .trial-checkbox-optional {
    border-style: dashed;
    background: transparent;
  }

  .trial-checkbox strong {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.86rem;
  }

  .trial-checkbox input {
    margin: 3px 0 0;
    width: 16px;
    height: 16px;
  }

  .trial-form-actions {
    margin-top: 22px;
  }

  .trial-submit-btn {
    min-width: 190px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(72, 152, 226, 0.22);
  }

  .trial-disclaimer {
    margin: 18px 0 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
  }

  .trial-form-status {
    min-height: 22px;
    margin-top: 14px;
    font-size: 0.94rem;
    color: #93d2ff;
  }

  @media (max-width: 960px) {
    .trial-audience {
      margin-bottom: 24px;
    }

    .trial-shell {
      grid-template-columns: 1fr;
    }

    .trial-info-card,
    .trial-form-card {
      padding: 24px;
    }
  }

  .trial-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .trial-turnstile-wrap {
    margin-top: 18px;
    margin-bottom: 8px;
  }
