/*===========================================
  Olojo Ibi — Artistic landing page styles
  Palette stays within the existing scheme:
  peach #e49c86 / #dd8165, ink #111 / #1D1D1D,
  light #f5f5f5 / #fff, plus derived peach tints.
===========================================*/

.landing {
  --peach: #e49c86;
  --peach-deep: #dd8165;
  --terracotta: #c2654a;
  --peach-soft: #f6d9cd;
  --cream: #fdf3ee;
  --ink: #111;
  --ink-soft: #1d1d1d;
  --muted: #6f6a67;
  --line: #ece4df;

  --display: "Syne", "DM Sans", sans-serif;

  background: var(--cream);
  overflow-x: hidden;
}

/* Let the landing own the full bleed under the fixed header. */
#content.landing {
  padding-top: 0;
  min-height: auto;
}

.landing section {
  position: relative;
}

.landing .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
}

.landing .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--peach-deep);
  display: inline-block;
}

.landing h1,
.landing h2,
.landing h3 {
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.02;
}

/*============ HERO ============*/
.hero {
  padding: 170px 0 90px;
  background:
    radial-gradient(circle at 82% 18%, rgba(228, 156, 134, 0.22), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(228, 156, 134, 0.16), transparent 38%),
    var(--cream);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  font-weight: 800;
  margin-bottom: 26px;
}

.hero h1 .mark {
  position: relative;
  white-space: nowrap;
  color: var(--terracotta);
}

.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 38%;
  background: var(--peach-soft);
  z-index: -1;
  transform: rotate(-1.4deg);
  border-radius: 4px;
}

.hero__lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Artistic buttons that build on the theme .btn */
.landing .btn-art {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.landing .btn-art.-solid {
  background: var(--ink);
  color: #fff;
  box-shadow: 6px 6px 0 var(--peach);
}

.landing .btn-art.-solid:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--peach-deep);
  color: #fff;
}

.landing .btn-art.-ghost {
  background: transparent;
  color: var(--ink);
}

.landing .btn-art.-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translate(-2px, -2px);
}

.hero__meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero__meta .dots {
  display: inline-flex;
}

.hero__meta .dots span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -10px;
  background: var(--peach);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.hero__meta .dots span:nth-child(2) { background: var(--terracotta); }
.hero__meta .dots span:nth-child(3) { background: var(--ink); color: #fff; }
.hero__meta .dots span:first-child { margin-left: 0; }

/* Hero visual: stacked, rotated message cards */
.hero__art {
  position: relative;
  min-height: 440px;
}

.hero__art .blob {
  position: absolute;
  inset: 6% 0 0 8%;
  background: linear-gradient(150deg, var(--peach), var(--peach-deep));
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: saturate(1.05);
  z-index: 0;
  animation: blobMorph 14s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50% { border-radius: 58% 42% 44% 56% / 44% 58% 42% 56%; }
}

.msg-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  width: 260px;
  box-shadow: 0 24px 50px -22px rgba(48, 30, 22, 0.45);
  border: 1px solid var(--line);
  z-index: 2;
}

.msg-card .quote {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 16px;
}

.msg-card .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.msg-card .who .tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--terracotta);
}

.msg-card .who .guess {
  background: var(--peach-soft);
  color: var(--terracotta);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.msg-card.-one {
  top: 16px;
  left: 0;
  transform: rotate(-6deg);
}

.msg-card.-two {
  top: 150px;
  right: 0;
  transform: rotate(5deg);
  z-index: 3;
}

.msg-card.-three {
  bottom: 4px;
  left: 38px;
  transform: rotate(-2deg);
  background: var(--ink);
  border-color: var(--ink);
}

.msg-card.-three .quote { color: #fff; }
.msg-card.-three .who .tag { color: var(--peach); }

.hero__art .confetti-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.hero__art .confetti-dot.c1 { width: 16px; height: 16px; background: var(--terracotta); top: 4%; right: 22%; }
.hero__art .confetti-dot.c2 { width: 10px; height: 10px; background: var(--ink); bottom: 18%; right: 12%; }
.hero__art .confetti-dot.c3 { width: 22px; height: 22px; border: 3px solid var(--peach-deep); background: transparent; top: 46%; left: -10px; }

/*============ MARQUEE ============*/
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--peach);
  border-bottom: 3px solid var(--peach);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  animation: marquee 26s linear infinite;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee__track span { display: inline-flex; align-items: center; gap: 34px; }
.marquee__track .star { color: var(--peach); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/*============ FEATURES ============*/
.features {
  padding: 96px 0;
  background: var(--cream);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-head p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -26px rgba(48, 30, 22, 0.4);
  border-color: var(--peach);
}

.feature-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(150deg, var(--peach), var(--peach-deep));
  margin-bottom: 22px;
}

.feature-card:nth-child(2) .ico { background: linear-gradient(150deg, var(--terracotta), var(--peach-deep)); }
.feature-card:nth-child(3) .ico { background: var(--ink); }
.feature-card:nth-child(4) .ico { background: linear-gradient(150deg, var(--peach-deep), var(--terracotta)); }

.feature-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

/*============ HOW IT WORKS ============*/
.how {
  padding: 96px 0;
  background: var(--ink);
  color: #fff;
}

.how .section-head h2 { color: #fff; }
.how .section-head p { color: rgba(255, 255, 255, 0.7); }
.how .eyebrow { color: var(--peach); }
.how .eyebrow::before { background: var(--peach); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 30px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step .num {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--peach);
  margin-bottom: 18px;
  display: block;
}

.step h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

/*============ FINAL CTA ============*/
.cta {
  padding: 100px 0;
  background: var(--cream);
}

.cta__panel {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 55%, var(--terracotta) 100%);
  border-radius: 30px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__panel::before,
.cta__panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.cta__panel::before { width: 260px; height: 260px; top: -120px; right: -60px; }
.cta__panel::after { width: 180px; height: 180px; bottom: -90px; left: -40px; }

.cta__panel h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
}

.cta__panel p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta__panel .btn-art.-solid {
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.25);
}

.landing .next-step {
  font-size: 1.15rem;
  color: var(--muted);
}

.landing .next-step a {
  color: var(--terracotta);
  font-weight: 700;
  border-bottom: 2px solid var(--peach-soft);
}

/*============ FAQ ============*/
.faq {
  padding: 96px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 26px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--peach);
}

.faq-item[open] {
  border-color: var(--peach);
  box-shadow: 0 24px 50px -30px rgba(48, 30, 22, 0.4);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}

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

.faq-item summary i {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(150deg, var(--peach), var(--peach-deep));
  transition: transform 0.25s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 0 26px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.faq-item p a {
  color: var(--terracotta);
  font-weight: 700;
  border-bottom: 2px solid var(--peach-soft);
}

/*============ RESPONSIVE ============*/
@media (max-width: 992px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 140px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__art { min-height: 400px; max-width: 360px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta__panel { padding: 52px 26px; }
  .marquee__track { font-size: 1.2rem; }
  .faq { padding: 64px 0; }
  .faq-item { padding: 0 20px; }
  .faq-item summary { font-size: 1.02rem; }
}
