/* landing.css — marketing site */

/* ============ HERO ============ */
.hero { position: relative; padding: 180px 0 90px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }

.hero-copy { max-width: 640px; }
.hero h1 {
  font-size: clamp(52px, 7.4vw, 104px); line-height: 0.94; letter-spacing: -0.035em;
  margin: 22px 0 26px; font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--lime); font-weight: 500; }
.hero h1 .thin { font-weight: 300; }
.hero-sub { font-size: clamp(17px, 1.7vw, 20px); color: var(--bone-2); max-width: 50ch; line-height: 1.55; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; gap: 28px; flex-wrap: wrap; color: var(--bone-3); font-size: 13.5px; }
.hero-meta b { color: var(--bone); font-family: var(--font-display); font-weight: 600; font-size: 22px; display: block; line-height: 1; margin-bottom: 4px; }

/* live brand showcase card */
.showcase {
  position: relative; border-radius: var(--r-lg); padding: 4px;
  background: linear-gradient(160deg, var(--line-2), transparent 40%);
}
.showcase-inner {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: calc(var(--r-lg) - 3px);
  padding: 30px; min-height: 440px; display: flex; flex-direction: column; gap: 22px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.showcase-inner::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: radial-gradient(400px 200px at 80% -10%, var(--lime-dim), transparent 70%);
}
.sc-head { display: flex; justify-content: space-between; align-items: center; }
.sc-head .sc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-3); }
.sc-dots { display: flex; gap: 6px; }
.sc-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-4); display: block; }
.sc-logo {
  background: #fbfaf6; border-radius: var(--r); height: 190px; display: grid; place-items: center;
  padding: 30px; transition: opacity 0.5s; position: relative; overflow: hidden;
}
.sc-logo svg { max-width: 84%; max-height: 80%; }
.sc-row { display: flex; gap: 14px; align-items: stretch; }
.sc-palette { display: flex; gap: 7px; flex: 1; }
.sc-palette span { flex: 1; height: 46px; border-radius: 9px; transition: background 0.5s; }
.sc-type { flex: 1; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; }
.sc-type .d { font-family: var(--font-display); font-size: 22px; line-height: 1; color: var(--bone); }
.sc-type .m { font-family: var(--font-mono); font-size: 10px; color: var(--bone-3); margin-top: 6px; letter-spacing: 0.05em; }
.sc-foot { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--bone-3); font-family: var(--font-mono); }
.sc-name { color: var(--bone); font-family: var(--font-display); font-size: 16px; }
.sc-cycle { display: inline-flex; align-items: center; gap: 7px; }
.sc-cycle .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 var(--lime-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--lime-glow); } 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* ============ MARQUEE ============ */
.marquee { margin-top: 70px; border-block: 1px solid var(--line); padding: 26px 0; overflow: hidden; position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: scroll-x 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { background: #fbfaf6; border-radius: 14px; width: 168px; height: 92px; display: grid; place-items: center; padding: 16px 22px; flex-shrink: 0; }
.marquee-item svg { max-width: 100%; max-height: 100%; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============ SECTION SHELL ============ */
.section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 60px); letter-spacing: -0.03em; margin: 18px 0 18px; }
.section-head h2 em { font-style: italic; color: var(--lime); }
.section-head p { color: var(--bone-2); font-size: 18px; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

/* ============ FEATURES ============ */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; background: var(--ink-1);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s; position: relative; overflow: hidden; min-height: 230px;
  display: flex; flex-direction: column;
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--ink-2); }
.feature .fnum { font-family: var(--font-mono); font-size: 11px; color: var(--lime); letter-spacing: 0.1em; }
.feature .ficon { width: 52px; height: 52px; border-radius: 14px; background: var(--lime-dim); border: 1px solid rgba(212,255,64,0.2); display: grid; place-items: center; margin: 18px 0 18px; color: var(--lime); }
.feature .ficon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 22px; margin-bottom: 9px; letter-spacing: -0.01em; }
.feature p { color: var(--bone-2); font-size: 15px; line-height: 1.6; }
.feature.tall { grid-row: span 2; }
.feature.wide { grid-column: span 2; }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.step { padding: 44px 36px; border-right: 1px solid var(--line); position: relative; transition: background 0.4s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--ink-1); }
.step .snum { font-family: var(--font-display); font-size: 64px; color: var(--ink-4); line-height: 1; transition: color 0.4s; }
.step:hover .snum { color: var(--lime); }
.step h3 { font-size: 24px; margin: 16px 0 10px; }
.step p { color: var(--bone-2); font-size: 15px; }

/* ============ GALLERY ============ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gcard { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--ink-1); transition: transform 0.5s var(--ease-out), border-color 0.4s; }
.gcard:hover { transform: translateY(-5px); border-color: var(--line-2); }
.gcard .gtop { height: 130px; display: grid; place-items: center; padding: 22px; background: #fbfaf6; }
.gcard .gtop svg { max-width: 80%; max-height: 76%; }
.gcard .gpal { display: flex; height: 8px; }
.gcard .gpal span { flex: 1; }
.gcard .gmeta { padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.gcard .gmeta .gn { font-family: var(--font-display); font-size: 16px; }
.gcard .gmeta .gi { font-family: var(--font-mono); font-size: 10px; color: var(--bone-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============ STATS BAND ============ */
.stats { border-block: 1px solid var(--line); background: var(--ink-1); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 64px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(40px, 5vw, 66px); line-height: 1; letter-spacing: -0.03em; }
.stat .num em { color: var(--lime); font-style: normal; }
.stat .lbl { color: var(--bone-3); font-size: 13.5px; margin-top: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ PRICING ============ */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.plan { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; background: var(--ink-1); position: relative; transition: transform 0.5s var(--ease-out), border-color 0.4s; }
.plan:hover { transform: translateY(-5px); border-color: var(--line-2); }
.plan.featured { border-color: var(--lime); background: linear-gradient(180deg, var(--lime-dim), var(--ink-1) 40%); }
.plan .ptag { position: absolute; top: -11px; left: 26px; background: var(--lime); color: var(--ink); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 11px; border-radius: var(--r-pill); font-weight: 700; }
.plan h3 { font-family: var(--font-sans); font-weight: 600; font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--bone-2); }
.plan .price { font-family: var(--font-display); font-size: 52px; line-height: 1; margin: 16px 0 4px; letter-spacing: -0.03em; }
.plan .price span { font-family: var(--font-sans); font-size: 15px; color: var(--bone-3); font-weight: 400; }
.plan .pdesc { color: var(--bone-3); font-size: 13.5px; min-height: 38px; }
.plan ul { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { font-size: 14px; color: var(--bone-2); display: flex; gap: 10px; align-items: flex-start; }
.plan li svg { flex-shrink: 0; margin-top: 3px; color: var(--lime); }
.plan .btn { width: 100%; }

/* ============ TESTIMONIALS ============ */
.quotes { columns: 3; column-gap: 16px; }
.quote { break-inside: avoid; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; margin-bottom: 16px; background: var(--ink-1); }
.quote p { font-size: 16px; line-height: 1.6; color: var(--bone); }
.quote .qhead { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .av { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.quote .av svg { width: 100%; height: 100%; display: block; }
.quote .qn { font-weight: 600; font-size: 14px; }
.quote .qr { font-size: 12px; color: var(--bone-3); }
.quote .stars { color: var(--lime); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }

/* ============ CTA ============ */
.cta { text-align: center; border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: 80px 40px; background: radial-gradient(700px 360px at 50% 0%, var(--lime-dim), var(--ink-1)); position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(38px, 6vw, 76px); letter-spacing: -0.035em; margin-bottom: 20px; }
.cta h2 em { font-style: italic; color: var(--lime); }
.cta p { color: var(--bone-2); font-size: 18px; max-width: 48ch; margin: 0 auto 34px; }

/* responsive */
@media (max-width: 1040px) {
  .features, .gallery, .pricing { grid-template-columns: repeat(2, 1fr); }
  .quotes { columns: 2; }
  .feature.wide { grid-column: span 2; }
}
@media (max-width: 860px) {
  .hero { padding-top: 130px; }
  .hero .container { grid-template-columns: 1fr; }
  .showcase { order: 2; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .stats .container { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
}
@media (max-width: 620px) {
  .features, .gallery, .pricing { grid-template-columns: 1fr; }
  .quotes { columns: 1; }
  .feature.wide, .feature.tall { grid-column: auto; grid-row: auto; }
}
