/* KysKam Landing — section layout part 2 (ROI, UseCases, Testimonials, Pricing, FAQ, CTA, Footer) */

/* ════════════════ BIG SCREEN ADD-ON ════════════════ */
.bigscreen {
  background:
    radial-gradient(ellipse 600px 300px at 80% 30%, color-mix(in oklab, var(--accent-2) 18%, transparent), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bigscreen-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .bigscreen-card { grid-template-columns: 1fr; } }

.bigscreen-left { display: flex; flex-direction: column; gap: 20px; }
.bigscreen-title { font-size: clamp(36px, 4.4vw, 64px); }
.bigscreen-body {
  font-size: 16.5px;
  color: var(--fg-muted);
  max-width: 56ch;
  line-height: 1.55;
}
.bigscreen-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.bigscreen-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.bigscreen-list li b { color: var(--fg); font-weight: 600; }
.bigscreen-li-n { color: var(--accent); font-weight: 600; font-size: 16px; line-height: 1.4; }

/* Mock TV mounted on bar wall */
.bigscreen-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.bigscreen-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.bigscreen-frame-bezel {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0806;
  border-radius: 8px;
  padding: 10px;
  box-shadow:
    0 30px 60px -20px rgba(20, 12, 4, 0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 0 4px #1a120c;
  overflow: hidden;
}
.bigscreen-frame-bezel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.06) saturate(1.1) brightness(1.02);
}
.bigscreen-overlay {
  position: absolute;
  inset: 10px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, rgba(255,180,60,0.08) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.bigscreen-frame-stand {
  width: 26%;
  height: 14px;
  margin: -2px auto 0;
  background: linear-gradient(180deg, #1a120c 0%, #2a1d12 100%);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 16px -6px rgba(20,12,4,0.4);
}
.bigscreen-tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--fg-dim);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════ ROI ════════════════ */
.roi-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 980px) { .roi-grid { grid-template-columns: 1fr; } }

.roi-inputs {
  display: flex; flex-direction: column;
  gap: 28px;
  padding: 32px;
}
.roi-input-block { display: flex; flex-direction: column; gap: 6px; }
.roi-input-hint { font-size: 10.5px; }

.roi-slider { display: flex; flex-direction: column; gap: 10px; }
.roi-slider-row { display: flex; justify-content: space-between; align-items: baseline; }
.roi-slider-label { font-size: 14px; color: var(--fg-muted); }
.roi-slider-val { display: flex; align-items: baseline; gap: 2px; }
.roi-slider-val .display-md { font-size: 32px; }

.roi-slider-track-wrap {
  position: relative;
  height: 28px;
  display: flex; align-items: center;
}
.roi-slider-input {
  position: absolute;
  inset: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  z-index: 2;
  cursor: pointer;
  margin: 0;
}
.roi-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  cursor: pointer;
}
.roi-slider-input::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  cursor: pointer;
}
.roi-slider-track {
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
.roi-slider-track::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--pct, 0%);
  background: var(--accent);
  border-radius: 999px;
}
.roi-slider-ticks { display: flex; justify-content: space-between; font-size: 10px; }

.roi-baseline {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.roi-outputs { display: flex; flex-direction: column; gap: 16px; }
.roi-big {
  padding: 36px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  display: flex; flex-direction: column; gap: 14px;
}
.roi-big .eyebrow,
.roi-big .text-dim,
.roi-big .mono { color: rgba(255, 255, 255, 0.82); }
.roi-big-val { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.roi-big-val .display-lg { color: #ffffff; font-size: clamp(54px, 7vw, 88px); }
.roi-big-val .display-lg em { color: #ffffff; -webkit-text-fill-color: #ffffff; background: none; }
.roi-big-val .text-muted { color: rgba(255, 255, 255, 0.82) !important; }
.roi-big-kicker { color: rgba(255, 255, 255, 0.92) !important; font-size: 14.5px; }

.roi-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.roi-stat {
  background: var(--surface);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.roi-stat-val { font-size: clamp(34px, 4vw, 48px); }
.roi-stat-label { font-size: 11px; letter-spacing: 0.08em; }

.roi-foot { padding: 0 8px; }

/* ════════════════ USE CASES ════════════════ */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 760px) { .uc-grid { grid-template-columns: 1fr; } }

.uc-card {
  background: var(--bg-2);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.2s;
}
.uc-card:hover { background: var(--surface); }
.uc-head { display: flex; justify-content: space-between; align-items: center; }
.uc-arrow {
  font-size: 18px;
  color: var(--fg-dim);
  transition: color 0.2s, transform 0.2s;
}
.uc-card:hover .uc-arrow { color: var(--accent); transform: translate(2px, -2px); }
.uc-title { font-size: clamp(28px, 3vw, 40px); }
.uc-solution { color: var(--fg-muted); font-size: 15.5px; line-height: 1.5; }
.uc-stat {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.uc-stat .display-md { font-size: clamp(36px, 4vw, 52px); }

/* ════════════════ TESTIMONIALS ════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}
.testi-mark {
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  height: 32px;
}
.testi-body {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.testi-foot { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testi-avatar .placeholder-label { display: none; }
.testi-meta { display: flex; flex-direction: column; gap: 2px; }
.testi-who { font-size: 14px; }

/* ════════════════ PRICING / PILOT ════════════════ */
.pilot-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .pilot-wrap { grid-template-columns: 1fr; } }

.pilot-left {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.pilot-title { margin-top: 8px; }
.pilot-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.pilot-right {
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
@media (max-width: 980px) {
  .pilot-right { border-left: none; border-top: 1px solid var(--line); }
}

.pilot-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pilot-price-row > div { min-width: 0; }
.pilot-price {
  font-size: clamp(48px, 5.4vw, 78px) !important;
  line-height: 0.9;
  color: var(--accent);
  word-break: keep-all;
  overflow-wrap: normal;
}
.pilot-price em { color: var(--accent); }
.pilot-price-unit {
  font-size: 15px !important;
  letter-spacing: 0.04em;
  vertical-align: baseline;
  margin-left: 4px;
  white-space: nowrap;
}
.pilot-after { display: inline; }
.pilot-after em { color: var(--fg); font-size: clamp(28px, 3.2vw, 44px); }
.pilot-arrow { color: var(--fg-dim); font-size: 26px; padding-bottom: 14px; }

@media (max-width: 540px) {
  .pilot-price-row { grid-template-columns: 1fr; gap: 22px; }
  .pilot-arrow { display: none; }
}

.pilot-feats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: var(--fg-muted);
}
.pilot-feats li {
  display: flex; align-items: baseline; gap: 12px;
}
.pilot-feats li span { font-size: 9px; transform: translateY(-2px); }

.pilot-overflow {
  margin-top: 24px;
  padding: 18px 20px;
  background: color-mix(in oklab, var(--accent-2) 14%, transparent);
  border: 1px dashed color-mix(in oklab, var(--accent-2) 65%, transparent);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.pilot-overflow-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent-2) 60%, var(--fg));
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
}
.pilot-overflow-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.pilot-overflow-body b { color: var(--fg); font-weight: 600; }

/* ════════════════ FAQ ════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-head { display: flex; flex-direction: column; gap: 18px; }
.faq-head h2 { font-size: clamp(40px, 5vw, 72px); }

.faq-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  transition: padding 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-n { font-size: 11px; color: var(--fg-dim); letter-spacing: 0.12em; }
.faq-q-text { font-size: clamp(18px, 1.8vw, 22px); font-family: var(--font-display); }
.faq-toggle {
  font-size: 24px;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.faq-item.open .faq-toggle { color: var(--accent); }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(.3,.7,.4,1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  color: var(--fg-muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 60ch;
}
.faq-item.open .faq-a {
  padding: 0 4px 24px;
}

/* ════════════════ CTA ════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(100px, 12vw, 180px);
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 70%);
  pointer-events: none;
}
.cta-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .cta-container { grid-template-columns: 1fr; } }

.cta-left { display: flex; flex-direction: column; gap: 24px; }
.cta-left h2 { font-size: clamp(48px, 7vw, 108px); }
.cta-meta { padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; }

.cta-right { width: 100%; }
.cta-form, .cta-success {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.cta-field { display: flex; flex-direction: column; gap: 8px; }
.cta-field label { font-size: 10.5px; letter-spacing: 0.12em; color: var(--fg-dim); }
.cta-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s;
}
.cta-field input:focus {
  outline: none;
  border-color: var(--accent);
}
.cta-submit { width: 100%; justify-content: center; margin-top: 8px; }
.cta-fineprint { font-size: 10.5px; text-align: center; }
.cta-success { gap: 14px; text-align: left; }
.cta-success .display-md em { color: var(--accent); }

/* ════════════════ FOOTER ════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-word { display: inline; font-size: 32px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-cols > div { display: flex; flex-direction: column; gap: 6px; }
.footer-cols .eyebrow { padding-bottom: 8px; }
.footer-link {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--accent); }
.footer-foot {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .footer-foot { flex-direction: column; gap: 8px; }
}
