.landing-list,
.landing-page {
  padding-block: 1.25rem 3rem;
}

.landing-page > section,
.landing-page > .why-win-section,
.landing-page > .final-cta-section {
  margin-bottom: 1.25rem;
}

.landing-page > section:last-child,
.landing-page > .final-cta-section:last-child {
  margin-bottom: 0;
}

.landing-list-hero h1,
.landing-hero h1 {
  margin: 0 0 0.85rem;
  line-height: 1.35;
}

.landing-list-hero p,
.landing-hero p {
  margin: 0.5rem 0;
  color: var(--muted);
  line-height: 1.9;
}

.landing-list-grid,
.landing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.landing-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-list-item h2 {
  margin-top: 0;
}

.landing-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.landing-hero-note {
  font-weight: 600;
  color: var(--text) !important;
}

.landing-cta {
  margin-top: 1rem;
}

.landing-trust h2,
.narrative-block h2,
.timeline-block h2,
.impact-block h2,
.evidence-block h2,
.flow-block h2,
.invest-info h2,
.faq-block h2,
.final-cta h2 {
  margin-top: 0;
}

.trust-strip {}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-stat {
  border-radius: var(--radius-bento);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 4px rgba(0, 0, 0, 0.04);
}


.trust-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-bento) var(--radius-bento);
  pointer-events: none;
}

.trust-stat--gold::after { background: linear-gradient(90deg, #ffc300, #e6b000); }
.trust-stat--blue::after { background: linear-gradient(90deg, #0e3b65, #1a5fa0); }
.trust-stat--green::after { background: linear-gradient(90deg, #16a34a, #22c55e); }
.trust-stat--purple::after { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.trust-stat--gold {
  background: linear-gradient(135deg, rgba(255,195,0,0.1), rgba(255,195,0,0.04));
  border: 1px solid rgba(255,195,0,0.25);
}
.trust-stat--gold strong { color: #b8860b; }

.trust-stat--blue {
  background: linear-gradient(135deg, rgba(14,59,101,0.08), rgba(14,59,101,0.03));
  border: 1px solid rgba(14,59,101,0.2);
}
.trust-stat--blue strong { color: #0e3b65; }

.trust-stat--green {
  background: linear-gradient(135deg, rgba(22,163,74,0.08), rgba(22,163,74,0.03));
  border: 1px solid rgba(22,163,74,0.2);
}
.trust-stat--green strong { color: #15803d; }

.trust-stat--purple {
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(124,58,237,0.03));
  border: 1px solid rgba(124,58,237,0.2);
}
.trust-stat--purple strong { color: #6d28d9; }

.trust-stat strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.trust-stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

.founder-block {
  display: grid;
  gap: 1rem;
  grid-template-columns: 260px 1fr;
  align-items: start;
}

.founder-media {
  border: 1px dashed var(--border);
  border-radius: 14px;
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--card-muted);
  overflow: hidden;
  position: relative;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}


.founder-content h2 {
  margin-top: 0;
}

.founder-content ul {
  margin: 0.8rem 0 1rem;
  padding-inline-start: 1.1rem;
}

.founder-content li {
  margin: 0.3rem 0;
}

.founder-content blockquote {
  margin: 0.5rem 0 1rem;
  padding: 0.75rem 1rem;
  border-inline-start: 4px solid var(--brand-gold);
  background: rgba(var(--brand-gold-rgb), 0.1);
  border-radius: 10px;
}

.timeline {
  position: relative;
  padding-inline-start: 2rem;
  margin-top: 1.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand-gold), var(--accent));
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  inset-inline-start: -1.65rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--card);
  border: 3px solid var(--brand-gold);
  z-index: 1;
}

.timeline-item--now .timeline-dot {
  width: 18px;
  height: 18px;
  inset-inline-start: -1.75rem;
  top: 0.15rem;
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(var(--brand-gold-rgb), 0.25);
}

.timeline-content strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.timeline-item--now .timeline-content strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.impact-section {
  background: var(--card);
  border-radius: var(--radius-bento);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.impact-title {
  font-size: 1.7rem;
  margin: 0 0 0.75rem;
}

.impact-title em {
  font-style: normal;
  color: var(--brand-gold-deep);
}

.impact-subtitle {
  margin: 0 auto 0.5rem;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.85;
}

.impact-subtitle strong {
  color: var(--text);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.impact-item {
  background: var(--surface-inset);
  border-radius: 16px;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.impact-num {
  position: absolute;
  top: 0.65rem;
  inset-inline-start: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-gold-deep);
  background: var(--brand-gold-soft);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.impact-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 0.6rem;
}

.impact-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.6rem;
}

.impact-item h3 {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
}

.impact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.impact-bar {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-gold);
  margin: 0.75rem auto 0;
}

.impact-footer {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,195,0,0.08), rgba(255,195,0,0.03));
  border: 1px solid rgba(255,195,0,0.2);
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
}

.impact-footer-icon {
  color: var(--brand-gold-deep);
  margin-inline-end: 0.3rem;
}

.impact-footer strong {
  color: var(--brand-gold-deep);
}

@media (max-width: 980px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-section {
    padding: 1.5rem 1rem;
  }
}

.why-section {
  background: var(--card);
  border-radius: var(--radius-bento);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}

.why-title {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
}

.why-title em {
  font-style: normal;
  color: #7c3aed;
}

.why-subtitle {
  margin: 0 auto 1.25rem;
  max-width: 580px;
  color: var(--muted);
  line-height: 1.85;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-card {
  border-radius: 16px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.why-card--purple {
  background: linear-gradient(160deg, rgba(124,58,237,0.06) 0%, rgba(124,58,237,0.02) 100%);
  border: 1px solid rgba(124,58,237,0.15);
}

.why-card--gold {
  background: linear-gradient(160deg, rgba(255,195,0,0.08) 0%, rgba(255,195,0,0.02) 100%);
  border: 1px solid rgba(255,195,0,0.2);
}

.why-card--blue {
  background: linear-gradient(160deg, rgba(14,59,101,0.06) 0%, rgba(14,59,101,0.02) 100%);
  border: 1px solid rgba(14,59,101,0.15);
}

.why-num {
  position: absolute;
  top: 0.7rem;
  inset-inline-start: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.why-card--purple .why-num {
  color: #7c3aed;
  background: rgba(124,58,237,0.12);
}

.why-card--gold .why-num {
  color: #b8860b;
  background: rgba(255,195,0,0.18);
}

.why-card--blue .why-num {
  color: #0e3b65;
  background: rgba(14,59,101,0.1);
}

.why-icon-img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 0.7rem;
}

.why-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.why-card--purple h3 { color: #6d28d9; }
.why-card--gold h3 { color: #b8860b; }
.why-card--blue h3 { color: #0e3b65; }

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.9rem;
}

.why-footer {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(124,58,237,0.02));
  border: 1px solid rgba(124,58,237,0.15);
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
}

.why-footer-icon {
  margin-inline-end: 0.3rem;
}

.why-footer strong {
  color: #6d28d9;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-section {
    padding: 1.5rem 1rem;
  }
}

.security-block h3 {
  margin-top: 0;
}

.evidence-block h3 {
  margin: 1rem 0 0.65rem;
}

.evidence-card-icon,
.evidence-card-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  object-fit: contain;
  background: var(--card);
  padding: 0.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.08);
  margin-bottom: 0;
}

.evidence-card-logo.is-fallback {
  display: inline-block;
  position: relative;
}

.evidence-card-logo.is-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

.evidence-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  text-align: start;
}

.evidence-card-titles {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.evidence-card-platform {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.evidence-card-titles strong {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}

.evidence-card-sales,
.evidence-card-rating {
  display: block;
  margin-bottom: 0.25rem;
  text-align: start;
}

.evidence-card strong,
.evidence-card span,
.evidence-card b {
  display: block;
  margin-bottom: 0.35rem;
}

.evidence-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.evidence-card-link:hover {
  color: var(--accent);
}

.evidence-card:has(.evidence-card-link):hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.badge-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 195, 0, 0.18);
  background: rgba(255, 195, 0, 0.06);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.badge-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 195, 0, 0.55);
}

.badge-item--gold {
  background: rgba(255, 195, 0, 0.1);
  border-color: rgba(255, 195, 0, 0.28);
  color: var(--text);
  box-shadow: none;
}

.badge-item-medal {
  font-size: 1.05rem;
  flex-shrink: 0;
  filter: none;
  opacity: 0.9;
}

.badge-item-text {
  line-height: 1.5;
  font-size: 0.94rem;
  color: var(--text);
}

.flow-steps {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.flow-steps span {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  background: var(--card-muted);
}

.invest-info .landing-grid div {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  background: var(--card-muted);
}

.invest-info small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.invest-info strong {
  font-size: 1.02rem;
}

.landing-calc {
  padding: 1.35rem 1.25rem 1.4rem;
}

.landing-calc h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  color: var(--accent);
}

.landing-calc-hint {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.landing-calc-hint.hidden {
  display: none;
}

.landing-calc-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
  color: var(--text);
}

.landing-calc-amount-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-muted);
  padding: 0.35rem 0.45rem 0.35rem 0.75rem;
}

.landing-calc-currency {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.landing-calc-input {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0.65rem 0.4rem;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  cursor: default;
  caret-color: transparent;
  user-select: none;
  pointer-events: none;
}

.landing-calc-steppers {
  display: flex;
  gap: 0.35rem;
}

.landing-calc-step {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: #fff;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.landing-calc-step:hover {
  background: var(--accent-soft);
}

.landing-calc-slider-wrap {
  margin-top: 1rem;
  direction: ltr;
}

.landing-calc-slider {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 20px;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.landing-calc-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) var(--progress, 0%),
    #e6e8ee var(--progress, 0%),
    #e6e8ee 100%
  );
}

.landing-calc-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #e6e8ee;
}

.landing-calc-slider::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.landing-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -7px; /* center 20px thumb on 6px track */
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.35);
  cursor: pointer;
}

.landing-calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.35);
  cursor: pointer;
}

.landing-calc-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.landing-calc-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.95rem 0 0.35rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--text);
  line-height: 1.7;
  font-size: 0.9rem;
}

.landing-calc-note-icon {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.landing-calc-max {
  margin: 0.35rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.landing-calc-result {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
}

.landing-calc-loading,
.landing-calc-empty {
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card-muted);
  padding: 0.9rem;
}

.landing-calc-loading.hidden,
.landing-calc-empty.hidden,
.landing-calc-content.hidden {
  display: none;
}

.landing-return-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.landing-return-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.landing-return-icon {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  background: var(--accent-soft);
  font-size: 0.95rem;
}

.landing-return-head strong {
  font-size: 0.98rem;
  color: var(--text);
}

.landing-return-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.landing-return-col {
  padding: 1rem 0.85rem 0.9rem;
  text-align: center;
  border-inline-start: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.landing-return-col:first-child {
  border-inline-start: 0;
}

.landing-return-label {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.landing-return-value {
  color: var(--accent);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
}

.landing-return-badge {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.landing-return-badge--green {
  background: rgba(22, 163, 74, 0.12);
}

.landing-return-badge--red {
  background: rgba(220, 38, 38, 0.1);
}

.landing-return-badge--blue {
  background: rgba(var(--accent-rgb), 0.1);
}

@media (max-width: 720px) {
  .landing-return-grid {
    grid-template-columns: 1fr;
  }

  .landing-return-col {
    border-inline-start: 0;
    border-top: 1px solid var(--border);
  }

  .landing-return-col:first-child {
    border-top: 0;
  }
}

.landing-calc-cta {
  display: inline-flex;
  margin-top: 1rem;
}

.faq-block details {
  border-top: 1px solid var(--border);
  padding: 0.65rem 0;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-block p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.final-cta-section {
  position: relative;
  border-radius: var(--radius-bento);
  overflow: hidden;
  background: linear-gradient(135deg, #0e3b65 0%, #163f6e 40%, #1a4a7a 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem 3rem;
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 195, 0, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 100%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  color: #fff;
}

.final-cta-inner p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 1.02rem;
}

.final-quote {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border-inline-start: 4px solid var(--brand-gold);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  line-height: 1.9;
  text-align: start;
  font-size: 0.96rem;
}

.final-cta-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border-radius: 14px;
  background: var(--brand-gold);
  color: #0e3b65;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 195, 0, 0.5);
}

@media (max-width: 980px) {
  .landing-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .founder-block {
    grid-template-columns: 1fr;
  }

  .founder-media {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .landing-grid-4,
  .landing-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ?? Amad Sarmayeh brand landing ?? */

.landing-amad-body {
  overflow-x: hidden;
}

.amad-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}

.amad-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(14, 59, 101, 0.35), transparent),
    linear-gradient(145deg, #0a2a4a 0%, #0e3b65 45%, #163a5c 100%);
}

.amad-hero-media.is-empty {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 195, 0, 0.18), transparent 45%),
    linear-gradient(145deg, #071e36 0%, #0e3b65 50%, #1a4a73 100%);
}

.amad-hero-tile {
  overflow: hidden;
  min-height: 0;
}

.amad-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: saturate(0.92) brightness(0.78);
  transition: transform 8s ease;
}

.amad-hero:hover .amad-hero-tile img {
  transform: scale(1.08);
}

.amad-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.amad-hero-tile--2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.amad-hero-tile--3 { grid-column: 5 / 7; grid-row: 1 / 2; }
.amad-hero-tile--4 { grid-column: 3 / 4; grid-row: 2 / 3; }
.amad-hero-tile--5 { grid-column: 4 / 6; grid-row: 2 / 3; }
.amad-hero-tile--6 { grid-column: 6 / 7; grid-row: 2 / 3; }

.amad-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 30, 54, 0.35) 0%, rgba(7, 30, 54, 0.55) 40%, rgba(7, 30, 54, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 30, 54, 0.75) 0%, rgba(7, 30, 54, 0.2) 55%, transparent 100%);
  pointer-events: none;
}

.amad-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 4.5rem 3.5rem;
  max-width: 42rem;
}

.amad-brand-mark {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-gold);
  line-height: 1.2;
}

.amad-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.amad-hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 34rem;
}

.amad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.amad-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.amad-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.landing-amad {
  padding-bottom: 0;
}

.amad-section {
  padding-block: 4rem;
}

.amad-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.4;
}

.amad-section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 40rem;
}

.amad-exist {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 195, 0, 0.08), transparent),
    var(--bg);
}

.amad-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.amad-bridge-pole {
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.amad-bridge-pole strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 1.05rem;
}

.amad-bridge-pole span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.amad-bridge-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 7.5rem;
}

.amad-bridge-mid strong {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  white-space: nowrap;
}

.amad-bridge-line {
  width: 2px;
  height: 1.6rem;
  background: linear-gradient(180deg, transparent, var(--brand-gold), transparent);
}

.amad-exist-close {
  margin: 1.75rem 0 0;
  font-weight: 700;
  color: var(--text);
  font-size: 1.08rem;
}

.amad-impact {
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.amad-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.amad-impact-item {
  padding: 1.35rem 1rem;
  text-align: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.amad-impact-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
}

.amad-impact-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.amad-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.amad-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.amad-step-num {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  font-weight: 800;
}

.amad-steps strong {
  display: block;
  margin-bottom: 0.3rem;
}

.amad-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.amad-pipeline {
  background:
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(14, 59, 101, 0.06), transparent),
    var(--bg);
}

.amad-pipeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  counter-reset: pipe;
}

.amad-pipeline-list li {
  position: relative;
  padding: 1.15rem 0.9rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
}

.amad-pipeline-list li::before {
  counter-increment: pipe;
  content: counter(pipe);
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: var(--brand-gold);
  color: #0e3b65;
  font-size: 0.82rem;
  font-weight: 800;
}

.amad-pipeline-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.amad-pipeline-list span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.amad-economy {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.amad-economy-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.amad-economy-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.amad-industry-node {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 0.85rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.amad-industry-node:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: var(--shadow-md);
}

.amad-industry-node.is-active {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.14);
  background: linear-gradient(180deg, #fff 0%, rgba(var(--accent-rgb), 0.04) 100%);
}

.amad-industry-icon {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.amad-industry-node strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.amad-industry-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.amad-economy-panel {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
  min-height: 16rem;
  box-shadow: var(--shadow-sm);
}

.amad-economy-panel-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.amad-economy-panel-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.amad-economy-panel-head strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.amad-economy-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.amad-economy-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.amad-economy-projects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.amad-economy-projects a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: var(--card-muted);
  transition: background 0.2s ease;
}

.amad-economy-projects a:hover {
  background: rgba(var(--accent-rgb), 0.08);
}

.amad-economy-projects span {
  font-weight: 700;
  font-size: 0.95rem;
}

.amad-economy-projects small {
  color: var(--muted);
  font-size: 0.8rem;
}

.amad-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.amad-featured-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.amad-project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.amad-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amad-project-card-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  z-index: 1;
}

.amad-duotone-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.amad-owner-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(to top right, #000 0%, #000 14%, transparent 58%);
  mask-image: linear-gradient(to top right, #000 0%, #000 14%, transparent 58%);
}

.amad-owner-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: url(#amad-card-duotone);
}

.amad-owner-top {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.05rem 0.35rem;
  z-index: 1;
}

.amad-owner-avatar {
  display: inline-grid;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.75rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(14, 59, 101, 0.14);
}

.amad-owner-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amad-owner-intro {
  min-width: 0;
}

.amad-owner-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.amad-owner-name {
  display: block;
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--accent);
}

.amad-owner-location {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.amad-project-body {
  position: relative;
  padding: 0.75rem 1.05rem 1.2rem;
  z-index: 1;
}

.amad-owner-venture {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.amad-owner-venture span {
  color: var(--text);
  font-weight: 700;
}

.amad-owner-bio {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.amad-project-cat {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.amad-project-progress {
  height: 6px;
  border-radius: 999px;
  background: #e8ecf2;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.amad-project-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--brand-gold));
  transform-origin: right center;
  animation: amadProgressIn 0.9s ease both;
}

.amad-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.amad-featured-more {
  margin-top: 1.5rem;
}

.amad-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.amad-trust-grid article {
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.amad-trust-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.amad-trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.amad-faq-list details {
  border-top: 1px solid var(--border);
  padding: 0.85rem 0;
}

.amad-faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.amad-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.amad-faq-list summary::-webkit-details-marker {
  display: none;
}

.amad-faq-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.amad-final {
  position: relative;
  padding-block: 4.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 195, 0, 0.2), transparent 55%),
    linear-gradient(145deg, #071e36 0%, #0e3b65 55%, #163a5c 100%);
  color: #fff;
  overflow: hidden;
}

.amad-final-inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  text-align: center;
  margin-inline: auto;
}

.amad-final h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.45;
}

.amad-final p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  font-size: 1.05rem;
}

.amad-final-cta {
  background: var(--brand-gold);
  color: #0e3b65;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.35);
}

.amad-final-cta:hover {
  background: var(--brand-gold-hover);
  color: #0e3b65;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes amadProgressIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 980px) {
  .amad-hero-inner {
    max-width: none;
    margin-inline: 0;
    padding-block: 3.5rem 2.75rem;
  }

  .amad-bridge {
    grid-template-columns: 1fr;
  }

  .amad-bridge-mid {
    flex-direction: row;
    min-width: 0;
  }

  .amad-bridge-line {
    width: 1.6rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  }

  .amad-impact-grid,
  .amad-featured-grid,
  .amad-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amad-pipeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amad-economy-layout {
    grid-template-columns: 1fr;
  }

  .amad-economy-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .amad-hero {
    min-height: min(88vh, 680px);
  }

  .amad-hero-media {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .amad-hero-tile--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .amad-hero-tile--2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .amad-hero-tile--3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .amad-hero-tile--4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .amad-hero-tile--5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .amad-hero-tile--6 { display: none; }

  .amad-section {
    padding-block: 3rem;
  }

  .amad-impact-grid,
  .amad-featured-grid,
  .amad-trust-grid,
  .amad-pipeline-list,
  .amad-economy-map {
    grid-template-columns: 1fr;
  }

  .amad-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .amad-hero-actions .btn-primary,
  .amad-hero-actions .btn-secondary {
    text-align: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .amad-industry-node,
  .amad-project-card,
  .amad-hero-tile img,
  .amad-project-progress span {
    transition: none !important;
    animation: none !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* ?? Taban landing: full-width shell (Amad-like) ?? */

.landing-taban-body {
  overflow-x: hidden;
}

.taban-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}

.taban-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, #071e36 0%, #0e3b65 55%, #163a5c 100%);
  overflow: hidden;
}

.taban-hero-media.is-empty {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 195, 0, 0.18), transparent 45%),
    linear-gradient(145deg, #071e36 0%, #0e3b65 50%, #1a4a73 100%);
}

.taban-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.92) brightness(0.74);
  transform: scale(1.03);
}

.taban-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 30, 54, 0.25) 0%, rgba(7, 30, 54, 0.55) 45%, rgba(7, 30, 54, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 30, 54, 0.72) 0%, rgba(7, 30, 54, 0.25) 55%, transparent 100%);
  pointer-events: none;
}

.taban-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 44rem;
  padding-block: 4.5rem 3.5rem;
}

.taban-brand-mark {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-gold);
  line-height: 1.2;
}

.taban-hero .landing-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-bottom: 0.85rem;
}

.taban-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.taban-hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.9;
}

.landing-taban-story-body .taban-hero-mark {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  color: var(--brand-gold, #ffc300);
}

.landing-taban-story-body .taban-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0;
  margin: 1.35rem 0 0;
  padding: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.landing-taban-story-body .taban-hero-proof > span {
  display: inline;
}

.landing-taban-story-body .taban-hero-proof > span:not(:last-child)::after {
  content: "?";
  margin-inline: 0.7rem;
  color: rgba(255, 195, 0, 0.55);
  font-weight: 700;
}

.landing-taban-story-body .taban-hero-proof strong {
  color: #fff;
  font-weight: 750;
}

.landing-taban-story-body .taban-hero-bridge {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
}

.landing-taban-story-body .taban-hero .btn-primary {
  margin-top: 1.35rem;
}

.taban-hero .landing-hero-note {
  color: rgba(255, 255, 255, 0.95) !important;
  margin-top: 0.75rem;
}

.taban-hero .landing-cta {
  margin-top: 1.35rem;
}

.landing-taban {
  padding-bottom: 0;
}

.taban-section {
  padding-block: 3.5rem;
}

.taban-section > .container {
  padding-block: 0;
}

.taban-prose {
  max-width: 44rem;
}

.taban-prose h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.4;
}

.taban-prose p {
  margin: 0.65rem 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

.landing-taban-body .narrative-block {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 195, 0, 0.08), transparent),
    var(--bg);
}

.landing-taban-body .founder-section {
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.landing-taban-body .timeline-block {
  background: var(--bg);
}

.landing-taban-body .timeline-block h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.landing-taban-body .impact-section,
.landing-taban-body .why-section {
  border-radius: 0;
  background: transparent;
  padding: 3.5rem 0;
  text-align: center;
}

.landing-taban-body .impact-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.landing-taban-body .why-section {
  background: var(--bg);
}

.landing-taban-body .evidence-block,
.landing-taban-body .flow-block,
.landing-taban-body .invest-info,
.landing-taban-body .faq-block {
  background: #fff;
}

.landing-taban-body .evidence-block h2,
.landing-taban-body .flow-block h2,
.landing-taban-body .invest-info h2,
.landing-taban-body .faq-block h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.landing-taban-body .security-block {
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.landing-taban-body .landing-calc-section {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.landing-taban-body .landing-calc {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.landing-taban-body .final-cta-section {
  border-radius: 0;
  padding-block: 4.5rem;
  margin-bottom: 0;
}

.landing-taban-body .final-cta-inner {
  max-width: 40rem;
  margin-inline: auto;
}

.landing-taban-body .invest-meta-grid > div {
  padding: 1rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-muted);
}

.landing-taban-body .invest-meta-grid small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

@media (max-width: 980px) {
  .taban-hero-inner {
    max-width: none;
    padding-block: 3.5rem 2.75rem;
  }
}

@media (max-width: 640px) {
  .taban-hero {
    min-height: min(88vh, 680px);
  }

  .taban-section {
    padding-block: 2.75rem;
  }

  .landing-taban-body .impact-section,
  .landing-taban-body .why-section {
    padding: 2.75rem 0;
  }
}

/* -------------------------------------------------------------------------- */
/* Taban trust & returns (v2)                                                 */
/* -------------------------------------------------------------------------- */

.landing-taban-trust-body .taban-hero-veil {
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.28) 0%, rgba(12, 18, 28, 0.72) 55%, rgba(12, 18, 28, 0.92) 100%),
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(201, 162, 39, 0.22), transparent 55%);
}

.landing-taban-trust .taban-trust-lead {
  margin: 0.65rem 0 1.35rem;
  max-width: 42rem;
  color: var(--muted, #5c6570);
  line-height: 1.75;
  font-size: 1.02rem;
}

.landing-taban-trust-body .taban-trust-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
}

.landing-taban-trust-body .taban-trust-hero-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.landing-taban-trust-body .taban-trust-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.landing-taban-trust .taban-trust-security-grid {
  margin-top: 0.5rem;
}

.landing-taban-trust .taban-trust-security-card {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(28, 38, 52, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 241, 0.9));
}

.landing-taban-trust .taban-trust-security-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.landing-taban-trust .taban-trust-security-card p {
  margin: 0;
  color: var(--muted, #5c6570);
  line-height: 1.7;
  font-size: 0.95rem;
}

.landing-taban-trust .taban-trust-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted, #5c6570);
  line-height: 1.65;
}

.landing-taban-trust .landing-calc-section {
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.06), transparent 40%),
    var(--surface, #f7f5f0);
}

.landing-taban-trust .taban-section[id] {
  scroll-margin-top: 1.25rem;
}

.landing-taban-trust-body .taban-trust-hero-actions .btn-primary,
.landing-taban-trust-body .taban-trust-hero-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.landing-taban-trust .faq-block details {
  border: 1px solid rgba(28, 38, 52, 0.1);
  border-radius: 0.85rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.65rem;
  background: #fff;
}

.landing-taban-trust .faq-block summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.landing-taban-trust .faq-block summary::-webkit-details-marker {
  display: none;
}

.landing-taban-trust .faq-block summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent, #0e3b65);
  background: rgba(14, 59, 101, 0.08);
}

.landing-taban-trust .faq-block details[open] summary::after {
  content: "?";
}

.landing-taban-trust .faq-block details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted, #5c6570);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .landing-taban-trust-body .taban-trust-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-taban-trust-body .taban-trust-hero-actions .btn-primary,
  .landing-taban-trust-body .taban-trust-hero-actions .btn-secondary {
    text-align: center;
  }
}

/* -------------------------------------------------------------------------- */
/* Taban next-chapter storytelling (narrative rewrite, same UI grammar)       */
/* -------------------------------------------------------------------------- */

.landing-taban-story .taban-story-kicker {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--muted, #5c6570);
}

.landing-taban-story .taban-story-lead {
  margin: 0.5rem 0 1.25rem;
  max-width: 40rem;
  color: var(--muted, #5c6570);
  line-height: 1.75;
}

.landing-taban-story .taban-story-bridge {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.7;
  color: var(--accent, #0e3b65);
}

.landing-taban-story .why-now-block .taban-prose > p:last-of-type {
  margin-bottom: 0;
}

.landing-taban-story .timeline-item--future .timeline-content strong {
  color: var(--brand-gold, #c9a227);
}

.landing-taban-story .timeline-item--future .timeline-dot {
  background: var(--brand-gold, #c9a227);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
}

.taban-climax {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  place-items: end center;
  overflow: hidden;
  color: #fff;
}

.taban-climax-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, #163f6e 0%, #0e3b65 55%, #1a4a7a 100%);
}

.taban-climax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.72);
  transform: scale(1.03);
}

.taban-climax-media.is-empty {
  background:
    linear-gradient(135deg, #163f6e 0%, #0e3b65 55%, #1a4a7a 100%);
}

.taban-climax-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 30, 54, 0.2) 0%, rgba(7, 30, 54, 0.55) 45%, rgba(7, 30, 54, 0.88) 100%);
  pointer-events: none;
}

.taban-climax-line {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 3.5rem 1.25rem;
  max-width: 28rem;
  text-align: center;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 750;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.landing-taban-story .taban-story-calc-layers {
  display: grid;
  gap: 0;
  margin-top: 1rem;
  border-block: 1px solid rgba(14, 59, 101, 0.1);
}

.landing-taban-story .taban-story-calc-layer {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(14, 59, 101, 0.08);
  background: transparent;
}

.landing-taban-story .taban-story-calc-layer:last-child {
  border-bottom: 0;
}

.landing-taban-story .taban-story-calc-layer-num {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
  place-items: unset;
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--brand-gold, #b8860b);
  background: transparent;
  padding-top: 0.15rem;
}

.landing-taban-story .taban-story-calc-layer strong {
  display: block;
  margin-bottom: 0.3rem;
}

.landing-taban-story .taban-story-calc-layer p {
  margin: 0;
  color: var(--muted, #5c6570);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .taban-climax {
    min-height: min(62vh, 520px);
  }

  .taban-climax-line {
    padding: 2.5rem 1rem;
  }
}

/* Narrative architecture rhythm (scenes, not equal blocks) */
.landing-taban-story .taban-scene--short {
  padding-block: 2.25rem;
}

.landing-taban-story .taban-scene--tight {
  padding-block: 1.75rem;
}

.landing-taban-story .taban-story-bridge--alone {
  margin: 0 auto;
  padding: 1.75rem 1.25rem 0.5rem;
  text-align: center;
}

.landing-taban-story-body .taban-scene-belief.why-section {
  text-align: start;
  background: transparent;
  border-radius: 0;
  padding-inline: 0;
}

.landing-taban-story-body .taban-scene-belief .taban-scene-belief-lead,
.landing-taban-story-body .taban-scene-belief .why-subtitle {
  margin: 0 0 2rem;
  max-width: 38rem;
  text-align: start;
}

/* Founder: open layout, no card chrome */
.landing-taban-story-body .taban-story-founder {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin: 0 0 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: start;
}

.landing-taban-story-body .taban-story-founder .founder-media {
  margin: 0;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 4px;
  background: transparent;
  overflow: hidden;
}

.landing-taban-story-body .taban-story-founder .founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
}

.landing-taban-story-body .taban-story-founder .founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 36rem;
}

.landing-taban-story-body .taban-story-founder-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted, #5c6570);
}

.landing-taban-story-body .taban-story-founder .founder-content h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.35;
}

.landing-taban-story-body .taban-story-founder .founder-content > p {
  margin: 0 0 1.1rem;
  color: var(--muted, #5c6570);
  line-height: 1.9;
  font-size: 1.02rem;
}

.landing-taban-story-body .taban-story-founder .founder-content blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  border-inline-start: 2px solid var(--brand-gold, #c9a227);
  border-radius: 0;
  background: transparent;
  padding-inline-start: 0.9rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--accent, #0e3b65);
}

/* Reasons: stacked editorial lines, not cards */
.landing-taban-story-body .taban-story-reasons {
  display: grid;
  gap: 0;
  margin: 0 0 2.5rem;
  max-width: 40rem;
  border-block: 1px solid rgba(14, 59, 101, 0.12);
}

.landing-taban-story-body .taban-story-reason {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(14, 59, 101, 0.08);
  background: transparent;
}

.landing-taban-story-body .taban-story-reason:last-child {
  border-bottom: 0;
}

.landing-taban-story-body .taban-story-reason-num {
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--brand-gold, #b8860b);
  line-height: 1.6;
  padding-top: 0.1rem;
}

.landing-taban-story-body .taban-story-reason-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--accent, #0e3b65);
}

.landing-taban-story-body .taban-story-reason-body p {
  margin: 0;
  color: var(--muted, #5c6570);
  line-height: 1.8;
  font-size: 0.95rem;
}

.landing-taban-story-body .taban-scene-belief .taban-story-evidence-title {
  text-align: start;
}

.landing-taban-story .taban-story-evidence-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent, #0e3b65);
}

/* Evidence + ranks: rows with hairlines */
.landing-taban-story-body .taban-story-evidence {
  display: grid;
  gap: 0;
  margin: 0 0 0.35rem;
  max-width: 42rem;
}

.landing-taban-story-body .taban-story-evidence .evidence-card,
.landing-taban-story-body .taban-story-evidence .card {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  margin: 0;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(14, 59, 101, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-taban-story-body .taban-story-evidence .evidence-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}

.landing-taban-story-body .taban-story-evidence .evidence-card-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.landing-taban-story-body .taban-story-evidence .evidence-card-link {
  display: contents;
}

.landing-taban-story-body .taban-story-evidence .evidence-card strong,
.landing-taban-story-body .taban-story-evidence .evidence-card-titles strong {
  font-size: 0.98rem;
}

.landing-taban-story-body .taban-story-evidence .evidence-card span,
.landing-taban-story-body .taban-story-evidence .evidence-card b,
.landing-taban-story-body .taban-story-evidence .evidence-card-sales,
.landing-taban-story-body .taban-story-evidence .evidence-card-rating,
.landing-taban-story-body .taban-story-evidence .evidence-card-platform {
  color: var(--muted, #5c6570);
  font-size: 0.9rem;
  font-weight: 500;
}

.landing-taban-story-body .taban-story-ranks.badge-list {
  display: grid;
  gap: 0;
  margin: 0 0 1.75rem;
  max-width: 42rem;
}

.landing-taban-story-body .taban-story-ranks .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(14, 59, 101, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-taban-story-body .taban-story-ranks .badge-item::before {
  display: none;
}

.landing-taban-story-body .taban-story-ranks .badge-item-text {
  font-weight: 550;
  font-size: 0.92rem;
  color: var(--text);
}

.landing-taban-story-body .taban-story-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  margin: 0 0 0.5rem;
  max-width: 42rem;
  padding: 0.35rem 0 0;
  color: var(--muted, #5c6570);
  font-size: 0.92rem;
  line-height: 1.7;
}

.landing-taban-story-body .taban-story-assurances span {
  position: relative;
  padding-inline-start: 0.85rem;
}

.landing-taban-story-body .taban-story-assurances span::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-gold, #c9a227);
}

@media (max-width: 780px) {
  .landing-taban-story-body .taban-story-founder {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .landing-taban-story-body .taban-story-founder .founder-media {
    max-width: 200px;
    width: 56%;
    aspect-ratio: 4 / 5;
  }
}

/* Future scene: outcomes as open columns, not tiles */
.landing-taban-story-body .impact-grid {
  gap: 1.5rem 1.75rem;
}

.landing-taban-story-body .impact-item {
  background: transparent;
  border-radius: 0;
  padding: 0.35rem 0.15rem 0.75rem;
  text-align: start;
  box-shadow: none;
  border-bottom: 1px solid rgba(14, 59, 101, 0.1);
}

.landing-taban-story-body .impact-item:hover {
  transform: none;
  box-shadow: none;
}

.landing-taban-story-body .impact-item .impact-num {
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 0.55rem;
  padding: 0;
  background: transparent;
  color: var(--brand-gold, #b8860b);
  display: block;
}

.landing-taban-story-body .impact-item .impact-icon-img {
  margin: 0 0 0.65rem;
  width: 56px;
  height: 56px;
}

.landing-taban-story-body .impact-item .impact-bar {
  display: none;
}

.landing-taban-story-body .invest-info .landing-grid div,
.landing-taban-story-body .invest-meta-grid > div {
  border: 0;
  border-bottom: 1px solid rgba(14, 59, 101, 0.1);
  border-radius: 0;
  padding: 0.7rem 0;
  background: transparent;
  box-shadow: none;
}

.landing-taban-story-body .landing-calc {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.landing-taban-story-body .landing-calc-result {
  border-radius: 0;
}

.landing-taban-story .final-cta-section .landing-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.75rem;
}

.landing-taban-story .taban-story-faq-inline {
  margin-top: 1.5rem;
  text-align: right;
}

/* Chapter plate: number + real scene title (one heading, not two) */
.landing-taban-story-body .taban-chapter {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.95rem;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 1.5rem;
  margin-inline: calc(50% - 50vw);
  padding: 1.05rem clamp(1rem, 4vw, 2rem);
  border-radius: 0;
  border: 0;
  border-block: 1px solid rgba(14, 59, 101, 0.1);
  border-inline-start: 5px solid var(--brand-gold, #c9a227);
  background:
    linear-gradient(90deg, rgba(201, 162, 39, 0.14), rgba(248, 246, 241, 0.98) 32%, #fff 78%);
  box-shadow: none;
}

.landing-taban-story-body .taban-chapter-num {
  flex: 0 0 auto;
  font-size: clamp(1.55rem, 3.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--brand-gold, #b8860b);
  font-variant-numeric: tabular-nums;
  padding-top: 0.08rem;
}

.landing-taban-story-body .taban-chapter-title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 38rem;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--accent, #0e3b65);
}

.landing-taban-story-body .taban-chapter + p,
.landing-taban-story-body .taban-chapter + .impact-subtitle,
.landing-taban-story-body .taban-chapter + .why-subtitle,
.landing-taban-story-body .taban-chapter + .taban-story-lead {
  margin-top: 0;
}

.landing-taban-story-body .taban-hero h1 {
  margin: 0 0 0.85rem;
}

.landing-taban-story-body .taban-chapter--on-dark {
  border-color: rgba(255, 255, 255, 0.16);
  border-inline-start-color: var(--brand-gold, #ffc300);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.landing-taban-story-body .taban-chapter--on-dark .taban-chapter-num {
  color: var(--brand-gold, #ffc300);
}

.landing-taban-story-body .taban-chapter--on-dark .taban-chapter-title {
  color: #fff;
  max-width: 28rem;
}

.landing-taban-story-body .taban-scene[data-scene="2"],
.landing-taban-story-body .taban-scene[data-scene="3"],
.landing-taban-story-body .taban-scene[data-scene="4"],
.landing-taban-story-body .taban-scene[data-scene="5-meta"],
.landing-taban-story-body .taban-scene[data-scene="6"] {
  border-top: 1px solid rgba(14, 59, 101, 0.1);
  margin-top: 0.35rem;
  padding-top: clamp(2.75rem, 6vw, 4rem);
}

.landing-taban-story-body .taban-scene[data-scene="6"] {
  border-top: 0;
}

.landing-taban-story-body .taban-chapter-enter {
  opacity: 0;
  transform: none;
  transition: opacity 0.75s ease;
  will-change: opacity;
}

.landing-taban-story-body .taban-chapter-enter.is-visible,
.landing-taban-story-body .taban-chapter--hero.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .landing-taban-story-body .taban-chapter-enter {
    opacity: 1;
    transition: none;
  }
}

@media (max-width: 640px) {
  .landing-taban-story-body .taban-chapter {
    margin-bottom: 1.45rem;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .landing-taban-story-body .taban-chapter-num {
    font-size: 1.55rem;
  }
}

/* ?? Amad first-month letter landing ?? */

.landing-amad-month-body {
  overflow-x: hidden;
}

/* Active opportunity cards: clean owner layout, no broken banner strip */
.landing-amad-month-body .amad-owner-card-bg {
  display: none;
}

.amad-month-honor {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2.75rem;
}

.amad-month-honor-item {
  padding: 1.1rem 1rem;
  background: linear-gradient(160deg, rgba(14, 59, 101, 0.06), rgba(255, 195, 0, 0.08));
  border-inline-start: 3px solid var(--brand-gold);
}

.amad-month-honor-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: var(--accent, #0e3b65);
  line-height: 1.5;
}

.amad-month-honor-item span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.amad-month-glance-title {
  margin-top: 0.5rem;
}

.amad-month-funded-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.amad-month-funded-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(14, 59, 101, 0.1);
  overflow: hidden;
  min-height: 100%;
}

.amad-month-funded-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0e3b65;
}

.amad-month-funded-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amad-month-funded-media--empty {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 195, 0, 0.25), transparent 55%),
    linear-gradient(145deg, #0a2a4a, #163a5c);
}

.amad-month-funded-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.1rem 1.25rem;
  flex: 1;
}

.amad-month-funded-badge {
  align-self: flex-start;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 700;
}

.amad-month-funded-badge--as-raised {
  background: rgba(14, 59, 101, 0.1);
  color: #0e3b65;
}

.amad-month-funded-body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--text, #0e3b65);
}

.amad-month-funded-progress {
  margin: 0;
  color: #15803d;
  font-weight: 600;
  font-size: 0.95rem;
}

.amad-month-funded-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  margin: 0.35rem 0 0.5rem;
}

.amad-month-funded-meta div {
  min-width: 0;
}

.amad-month-funded-meta dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.amad-month-funded-meta dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
  color: var(--text, #0e3b65);
  font-size: 0.95rem;
  line-height: 1.45;
}

.amad-month-funded-cta {
  margin-top: auto;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.amad-month-funded-note {
  margin: 1.75rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.amad-month-timeline-title {
  margin: 2.75rem 0 1.1rem;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--text, #0e3b65);
}

.amad-month-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 36rem;
}

.amad-month-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0 0.85rem 0.5rem;
  border-inline-start: 2px solid rgba(14, 59, 101, 0.18);
  padding-inline-start: 1.25rem;
}

.amad-month-timeline li::before {
  content: "";
  position: absolute;
  inset-inline-start: -0.4rem;
  top: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.25);
}

.amad-month-timeline time {
  font-weight: 700;
  color: var(--accent, #0e3b65);
  font-size: 0.95rem;
}

.amad-month-timeline span {
  color: var(--muted);
  line-height: 1.7;
}

.landing-amad-month .landing-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-gold-deep, #b8860b);
  letter-spacing: -0.01em;
}

.amad-month-prose {
  max-width: 40rem;
}

.amad-month-prose.container {
  margin-inline: auto;
}

.amad-month-copy {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.amad-month-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.95;
}

.amad-month-impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amad-month-build-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.amad-month-build-list li {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-inline-start: 3px solid var(--brand-gold);
  background: linear-gradient(90deg, rgba(14, 59, 101, 0.05), transparent 70%);
}

.amad-month-build-list strong {
  font-size: 1.05rem;
  color: var(--text, #0e3b65);
}

.amad-month-build-list span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.amad-month-learn .amad-bridge {
  margin-block: 1.75rem 0.5rem;
}

.amad-month-sign {
  margin: 0 0 1.5rem !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.amad-month-sign strong {
  font-weight: 700;
  color: var(--brand-gold);
}

@media (max-width: 980px) {
  .amad-month-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amad-month-honor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amad-month-funded-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .amad-month-impact-grid {
    grid-template-columns: 1fr;
  }

  .amad-month-honor {
    grid-template-columns: 1fr;
  }

  .amad-month-build-list li {
    padding-inline: 0.9rem;
  }

  .amad-month-timeline li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .amad-month-funded-meta {
    grid-template-columns: 1fr;
  }
}

/* ?? Amad first-month presentation (curtain / stage) ?? */

.landing-amad-present-body {
  overflow: hidden;
  height: 100dvh;
  background: #f4f7fb;
}

.landing-amad-present-body .amad-present-stage {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.amad-present-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12%, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s ease,
    visibility 0s linear 0.72s;
}

.amad-present-scene.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  filter: none;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s ease,
    visibility 0s;
}

.amad-present-scene.is-exit-next {
  z-index: 1;
  opacity: 0;
  visibility: visible;
  transform: translate3d(0, -10%, 0) scale(1.02);
  filter: blur(10px);
  pointer-events: none;
}

.amad-present-scene.is-exit-prev {
  z-index: 1;
  opacity: 0;
  visibility: visible;
  transform: translate3d(0, 10%, 0) scale(0.98);
  filter: blur(10px);
  pointer-events: none;
}

.amad-present-scene.is-enter-next {
  animation: amadPresentEnterNext 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.amad-present-scene.is-enter-prev {
  animation: amadPresentEnterPrev 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes amadPresentEnterNext {
  from {
    opacity: 0;
    transform: translate3d(0, 14%, 0) scale(0.97);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes amadPresentEnterPrev {
  from {
    opacity: 0;
    transform: translate3d(0, -14%, 0) scale(1.02);
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.amad-present-hero {
  min-height: 100dvh;
  height: 100%;
}

.amad-present-frame {
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 3.5rem 4.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(255, 195, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #f7fafc 0%, #eef3f8 100%);
}

.amad-present-frame--scroll {
  align-items: flex-start;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.amad-present-panel {
  width: 100%;
}

.amad-present-panel > h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  color: var(--text, #0e3b65);
  line-height: 1.35;
}

.amad-present-final {
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.amad-present-scroll-cue {
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  animation: amadPresentCue 1.8s ease-in-out infinite;
}

@keyframes amadPresentCue {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

.amad-present-nav {
  position: fixed;
  z-index: 40;
  inset-inline-start: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.amad-present-nav-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 59, 101, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #0e3b65;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(14, 59, 101, 0.08);
}

.amad-present-nav-btn:hover {
  background: #fff;
  border-color: var(--brand-gold);
}

.amad-present-dots {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.amad-present-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(14, 59, 101, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, height 0.2s ease;
}

.amad-present-dot.is-active {
  height: 1.35rem;
  background: var(--brand-gold);
}

.landing-amad-present-body .amad-owner-card-bg {
  display: none;
}

.landing-amad-present-body .amad-month-funded-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: none;
}

.landing-amad-present-body .amad-featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .amad-present-nav {
    inset-inline-start: auto;
    inset-inline-end: 0.75rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    flex-direction: row;
  }

  .amad-present-dots {
    flex-direction: row;
  }

  .amad-present-dot.is-active {
    width: 1.35rem;
    height: 0.55rem;
  }

  .landing-amad-present-body .amad-month-funded-grid,
  .landing-amad-present-body .amad-featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-amad-present-body {
    overflow: auto;
    height: auto;
  }

  .landing-amad-present-body .amad-present-stage {
    height: auto;
    overflow: visible;
  }

  .amad-present-scene,
  .amad-present-scene.is-active,
  .amad-present-scene.is-exit-next,
  .amad-present-scene.is-exit-prev,
  .amad-present-scene.is-enter-next,
  .amad-present-scene.is-enter-prev {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }

  .amad-present-scroll-cue,
  .amad-present-nav {
    display: none;
  }
}

/* ?? Amad first-month marketing LP (question-led) ?? */

.amad-month-intro .amad-section-lead {
  font-size: 1.12rem;
}

.amad-month-intro-proof {
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text, #0e3b65);
  font-weight: 600;
}

.amad-month-glance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.amad-month-glance-card {
  padding: 1.25rem 1rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(14, 59, 101, 0.05), rgba(255, 195, 0, 0.08));
  border-inline-start: 3px solid var(--brand-gold);
}

.amad-month-glance-card strong {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: var(--accent, #0e3b65);
  line-height: 1.3;
}

.amad-month-glance-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.amad-month-concern {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(14, 59, 101, 0.1);
}

.amad-month-concern:first-of-type {
  border-top: none;
  padding-top: 0.5rem;
}

.amad-month-concern--flip .amad-month-shot {
  order: -1;
}

.amad-month-concern h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--text, #0e3b65);
  line-height: 1.45;
}

.amad-month-concern-copy > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.amad-month-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.amad-month-check-list li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: var(--text, #0e3b65);
  line-height: 1.65;
}

.amad-month-check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-gold);
}

.amad-month-shot {
  border: 1px solid rgba(14, 59, 101, 0.12);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(14, 59, 101, 0.08);
}

.amad-month-shot-chrome {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: #0e3b65;
}

.amad-month-shot-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.amad-month-shot-chrome span:first-child {
  background: var(--brand-gold);
}

.amad-month-shot-body {
  min-height: 12rem;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 195, 0, 0.12), transparent 45%),
    linear-gradient(160deg, #f7fafc, #e8eef5);
}

.amad-month-shot-body--profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.amad-month-shot-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #0e3b65, #1a5a8a);
}

.amad-month-shot-lines {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.35rem;
}

.amad-month-shot-lines b,
.amad-month-shot-lines i {
  display: block;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(14, 59, 101, 0.18);
}

.amad-month-shot-lines b { width: 70%; height: 0.9rem; background: rgba(14, 59, 101, 0.35); }
.amad-month-shot-lines i:nth-child(2) { width: 88%; }
.amad-month-shot-lines i:nth-child(3) { width: 55%; }

.amad-month-shot-stores {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.amad-month-shot-stores em {
  display: block;
  height: 3.2rem;
  border-radius: 10px;
  background: rgba(14, 59, 101, 0.1);
}

.amad-month-shot-slider {
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-gold) 55%, rgba(14, 59, 101, 0.12) 55%);
  margin-bottom: 1.1rem;
}

.amad-month-shot-calc-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.amad-month-shot-calc-row b,
.amad-month-shot-calc-row i {
  display: block;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(14, 59, 101, 0.16);
}

.amad-month-shot-calc-row b { width: 42%; }
.amad-month-shot-calc-row i { width: 28%; }
.amad-month-shot-calc-row--accent b,
.amad-month-shot-calc-row--accent i {
  background: rgba(201, 160, 18, 0.55);
  height: 0.95rem;
}

.amad-month-shot-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.amad-month-shot-table span {
  display: block;
  height: 2.2rem;
  border-radius: 8px;
  background: rgba(14, 59, 101, 0.1);
}

.amad-month-shot-table span:nth-child(3n) {
  background: rgba(22, 163, 74, 0.18);
}

.amad-month-shot-body--invite {
  display: grid;
  gap: 0.75rem;
}

.amad-month-shot-invite-card {
  height: 3.5rem;
  border-radius: 12px;
  background: rgba(14, 59, 101, 0.1);
  border: 1px dashed rgba(14, 59, 101, 0.2);
}

.amad-month-shot-caption {
  margin: 0;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
  background: #fff;
  border-top: 1px solid rgba(14, 59, 101, 0.08);
}

.amad-month-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.amad-month-insight {
  padding: 1.35rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(14, 59, 101, 0.1);
}

.amad-month-insight h3 {
  margin: 0 0 0.65rem;
  font-size: 1.08rem;
  color: var(--accent, #0e3b65);
}

.amad-month-insight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.amad-month-roadmap-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.amad-month-roadmap-list li {
  padding: 1.15rem 1.1rem;
  background: linear-gradient(90deg, rgba(14, 59, 101, 0.05), transparent 75%);
  border-inline-start: 3px solid var(--brand-gold);
}

.amad-month-roadmap-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text, #0e3b65);
}

.amad-month-roadmap-list span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.amad-month-signature {
  background:
    radial-gradient(ellipse 60% 70% at 20% 30%, rgba(255, 195, 0, 0.16), transparent 55%),
    linear-gradient(145deg, #071e36 0%, #0e3b65 55%, #163a5c 100%);
  color: #fff;
}

.amad-month-signature .landing-eyebrow {
  color: var(--brand-gold);
}

.amad-month-signature-quote {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  line-height: 1.85;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.amad-month-final-split {
  max-width: 40rem;
}

.amad-month-final-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.amad-month-final-paths p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.amad-month-final-fs {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.amad-month-final-fs:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 980px) {
  .amad-month-glance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amad-month-concern {
    grid-template-columns: 1fr;
  }

  .amad-month-concern--flip .amad-month-shot {
    order: 0;
  }

  .amad-month-insight-grid,
  .amad-month-roadmap-list,
  .amad-month-final-paths {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .amad-month-glance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -- Amad trust pyramid landing (/landing/amad-trust) -- */

.landing-amad-trust-body {
  background:
    radial-gradient(1200px 500px at 100% -10%, rgba(14, 59, 101, 0.07), transparent 60%),
    radial-gradient(900px 420px at 0% 20%, rgba(201, 148, 58, 0.06), transparent 55%),
    var(--bg, #f7f5f1);
}

.landing-amad-trust .landing-eyebrow {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.amad-trust-logos {
  padding-block: 1.75rem 0.5rem;
}

.amad-trust-logo-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 1.25rem 0 0.25rem;
  border-bottom: 1px solid rgba(14, 59, 101, 0.1);
}

.amad-trust-logo-label {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.amad-trust-logo-list,
.amad-trust-license-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.amad-trust-logo-list li,
.amad-trust-license-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.amad-trust-logo-list img {
  display: block;
  max-height: 2.2rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
}

.amad-trust-logo-list li:first-child img {
  max-height: 2.6rem;
}

.amad-trust-license-list img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 0.35rem;
}

.amad-trust-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 2.25rem;
}

.amad-trust-kpi {
  padding: 1.15rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(14, 59, 101, 0.08);
  border-radius: 0.85rem;
  text-align: center;
}

.amad-trust-kpi strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.amad-trust-kpi span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.amad-trust-funded-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--text);
}

.amad-trust-funded-lead {
  margin-bottom: 1.15rem;
}

.landing-amad-trust-body .amad-trust-text-cta {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 59, 101, 0.28);
}

.landing-amad-trust-body .amad-trust-text-cta:hover {
  border-bottom-color: var(--accent);
}

.amad-trust-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.amad-trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.amad-trust-pillar h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--accent);
}

.amad-trust-pillar > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.amad-trust-pillar .amad-month-shot {
  margin-top: auto;
}

.amad-trust-process-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.amad-trust-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.amad-trust-timeline li {
  position: relative;
  padding: 0.85rem 0 0.85rem 0;
  padding-inline-start: 1.35rem;
  border-inline-start: 2px solid rgba(14, 59, 101, 0.18);
  color: var(--text);
  font-size: 1.02rem;
}

.amad-trust-timeline li::before {
  content: "";
  position: absolute;
  inset-inline-start: -0.4rem;
  top: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 59, 101, 0.12);
}

.amad-trust-timeline li:last-child {
  border-inline-start-color: transparent;
}

.amad-trust-timeline strong {
  font-weight: 700;
}

.amad-trust-process-quote {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: rgba(14, 59, 101, 0.06);
  border-radius: 0.9rem;
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.75;
  border: none;
}

.amad-trust-action-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.amad-trust-action-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0.9rem;
}

.amad-trust-action-steps strong {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text);
}

.amad-trust-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.35rem;
}

.amad-trust-market-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(14, 59, 101, 0.08);
  border-radius: 1rem;
}

.amad-trust-market-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.amad-trust-market-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(14, 59, 101, 0.06);
}

.amad-trust-market-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.amad-trust-market-link:hover .amad-trust-market-media img {
  transform: scale(1.03);
}

.amad-trust-market-media--empty {
  background:
    linear-gradient(135deg, rgba(14, 59, 101, 0.12), rgba(201, 148, 58, 0.1));
}

.amad-trust-market-body {
  padding: 1rem 1.05rem 1.15rem;
}

.amad-trust-market-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
}

.amad-trust-market-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.amad-trust-final-eyebrow {
  color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 980px) {
  .amad-trust-logo-row,
  .amad-trust-pillar-grid,
  .amad-trust-process-layout,
  .amad-trust-action-steps,
  .amad-trust-market-grid {
    grid-template-columns: 1fr;
  }

  .amad-trust-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .amad-trust-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amad-trust-logo-list,
  .amad-trust-license-list {
    gap: 0.7rem 1rem;
  }
}

/* --- Fund seeker acquisition (Demand Discovery) --- */
.landing-amad-acq-body .amad-acq-hero {
  min-height: min(92vh, 760px);
}

.amad-acq-hero-media {
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 195, 0, 0.22), transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(ellipse 90% 70% at 55% 100%, rgba(14, 59, 101, 0.55), transparent 58%),
    linear-gradient(145deg, #071e36 0%, #0e3b65 48%, #123f66 100%);
}

.amad-acq-hero-veil {
  background:
    linear-gradient(180deg, rgba(7, 22, 40, 0.08) 0%, rgba(7, 22, 40, 0.42) 68%, rgba(7, 22, 40, 0.78) 100%);
}

.amad-acq-hero-strong {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 800;
  color: #fff;
}

.amad-acq-cta-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.landing-amad-acq-body .amad-acq-hero .amad-acq-cta,
.landing-amad-acq-body .amad-acq-final .amad-acq-cta {
  background: var(--brand-gold);
  color: #0e3b65;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.35);
  animation: amadAcqCtaBlink 1.35s ease-in-out infinite;
}

.landing-amad-acq-body .amad-acq-hero .amad-acq-cta:hover,
.landing-amad-acq-body .amad-acq-final .amad-acq-cta:hover,
.landing-amad-acq-body .amad-acq-hero .amad-acq-cta:focus-visible,
.landing-amad-acq-body .amad-acq-final .amad-acq-cta:focus-visible {
  animation: none;
  background: var(--brand-gold-hover);
  color: #0e3b65;
  box-shadow: 0 6px 24px rgba(255, 195, 0, 0.42);
}

@keyframes amadAcqCtaBlink {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(255, 195, 0, 0.32);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(255, 195, 0, 0.22),
      0 10px 36px rgba(255, 195, 0, 0.72);
    filter: brightness(1.14);
  }
}

.amad-acq-cta-note--light {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.landing-amad-acq {
  padding-bottom: 0;
}

.amad-acq-value {
  background: var(--bg);
}

.amad-acq-value h2 {
  margin-bottom: 0.85rem;
}

.amad-acq-compare {
  display: grid;
  gap: 0.75rem;
}

.amad-acq-value .amad-acq-aside,
.amad-acq-path {
  margin: 0;
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
}

.amad-acq-path {
  min-width: 0;
}

.amad-acq-value .amad-acq-aside {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.amad-acq-path-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.1rem;
  margin-bottom: 0.75rem;
}

.amad-acq-path-head h3,
.amad-acq-path-head p {
  margin: 0;
  line-height: 1.5;
}

.amad-acq-path-head h3 {
  font-size: 1rem;
  font-weight: 800;
}

.amad-acq-path-head p {
  font-size: 0.92rem;
  font-weight: 700;
}

.amad-acq-path ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  direction: rtl;
  align-items: center;
  gap: 0.2rem;
}

.amad-acq-path li {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.amad-acq-path li + li::before {
  content: "←";
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.45;
}

.amad-acq-path li span {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  text-align: center;
  padding: 0.52rem 0.45rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.amad-acq-path--usual {
  background: #fff;
  border: 1px solid var(--border);
  color: #6a7784;
  box-shadow: var(--shadow-sm);
}

.amad-acq-path--usual .amad-acq-path-head h3,
.amad-acq-path--usual .amad-acq-path-head p {
  color: #6a7784;
}

.amad-acq-path--usual li span {
  background: #f3f5f8;
  color: #5d6b78;
}

.amad-acq-path--amad {
  background: #0e3b65;
  border: 1px solid rgba(255, 195, 0, 0.28);
  box-shadow: 0 10px 28px rgba(14, 59, 101, 0.14);
  color: #fff;
}

.amad-acq-path--amad .amad-acq-path-head h3 {
  color: #fff;
}

.amad-acq-path--amad .amad-acq-path-head p {
  color: var(--brand-gold);
}

.amad-acq-path--amad li span {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.amad-acq-path--amad li:last-child span {
  background: var(--brand-gold);
  color: #0e3b65;
}

.amad-acq-value-point {
  margin: 1.15rem 0 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.85;
}

.amad-acq-audience {
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.amad-acq-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.amad-acq-card {
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.amad-acq-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--accent);
  line-height: 1.5;
}

.amad-acq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.95rem;
}

.amad-acq-aside-wrap {
  margin-top: 1.75rem;
}

.amad-acq-aside {
  margin: 0;
  padding: 1.45rem 1.35rem;
  text-align: center;
  border: 1px solid rgba(var(--brand-gold-rgb), 0.42);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--brand-gold-rgb), 0.24), transparent 68%),
    linear-gradient(180deg, rgba(var(--brand-gold-rgb), 0.16) 0%, rgba(var(--brand-gold-rgb), 0.07) 100%);
  box-shadow:
    0 10px 30px rgba(14, 59, 101, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #0e3b65;
  font-size: clamp(1.08rem, 2.4vw, 1.42rem);
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

.amad-acq-process {
  background: var(--bg);
}

.amad-acq-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  direction: rtl;
  align-items: stretch;
  gap: 0.55rem;
}

.amad-acq-timeline > li:not(.amad-acq-timeline-arrow) {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-content: start;
  padding: 1.15rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: right;
}

.amad-acq-timeline > li:not(.amad-acq-timeline-arrow) .amad-step-num {
  margin-inline: auto 0;
}

.amad-acq-timeline > li:not(.amad-acq-timeline-arrow) strong {
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1.55;
}

.amad-acq-timeline > li:not(.amad-acq-timeline-arrow) p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9rem;
}

.amad-acq-timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.5rem;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.amad-acq-timeline-arrow-icon::before {
  content: "←";
}

.amad-acq-trust {
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(14, 59, 101, 0.06), transparent),
    #fff;
}

.amad-acq-trust-inner {
  max-width: 40rem;
}

.amad-acq-trust-quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  color: var(--text);
  line-height: 1.85;
  font-size: 0.98rem;
}

.amad-acq-trust-quote strong {
  font-weight: 700;
  color: var(--accent);
}

.amad-acq-final .amad-final-inner {
  max-width: 34rem;
}

.amad-acq-faq {
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.amad-acq-faq-inner {
  max-width: 42rem;
}

.amad-acq-faq-inner h2 {
  margin-bottom: 1.25rem;
}

.amad-acq-faq-list {
  display: grid;
  gap: 0.65rem;
}

.amad-acq-faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.amad-acq-faq-item[open] {
  border-color: rgba(var(--accent-rgb), 0.22);
  box-shadow: 0 8px 24px rgba(14, 59, 101, 0.06);
}

.amad-acq-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.6;
  list-style: none;
  color: var(--text);
}

.amad-acq-faq-item summary::-webkit-details-marker {
  display: none;
}

.amad-acq-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  transition: transform 0.15s ease, background 0.15s ease;
}

.amad-acq-faq-item[open] summary::after {
  content: "−";
  background: rgba(var(--brand-gold-rgb), 0.18);
  color: #0e3b65;
}

.amad-acq-faq-item p {
  margin: 0.75rem 0 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.94rem;
}

.amad-acq-footer {
  padding: 2.25rem 0 2.5rem;
  background: #071626;
  color: rgba(255, 255, 255, 0.88);
}

.amad-acq-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.amad-acq-footer-brand strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
  color: #fff;
}

.amad-acq-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
}

.amad-acq-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.amad-acq-footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.15s ease;
}

.amad-acq-footer-nav a:hover {
  color: var(--brand-gold);
}

@media (max-width: 980px) {
  .amad-acq-path-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .amad-acq-path ol {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .amad-acq-path li {
    flex: 0 0 auto;
  }

  .amad-acq-path li span {
    padding: 0.45rem 0.75rem;
  }

  .amad-acq-path li + li::before {
    display: none;
  }

  .amad-acq-card-grid {
    grid-template-columns: 1fr;
  }

  .amad-acq-timeline {
    flex-direction: column;
    direction: rtl;
    max-width: 36rem;
    gap: 0;
  }

  .amad-acq-timeline > li:not(.amad-acq-timeline-arrow) {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.2rem;
  }

  .amad-acq-timeline > li:not(.amad-acq-timeline-arrow) .amad-step-num {
    margin-inline: 0;
  }

  .amad-acq-timeline-arrow {
    width: auto;
    padding: 0.15rem 0 0.35rem;
  }

  .amad-acq-timeline-arrow-icon::before {
    content: "↓";
  }
}

@media (max-width: 640px) {
  .landing-amad-acq-body .amad-acq-hero {
    min-height: min(88vh, 680px);
  }

  .amad-acq-footer-inner {
    flex-direction: column;
  }

  .amad-acq-footer-nav {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-amad-acq-body .amad-acq-hero .amad-acq-cta,
  .landing-amad-acq-body .amad-acq-final .amad-acq-cta {
    animation: none;
  }
}

