/* ===== Why pages — shared styles ===== */

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head { max-width: 720px; }
.section-head h2 {
  font-size: clamp(32px, 3.6vw, 46px);
}
.section-head p {
  margin-top: 18px; font-size: 17px; color: var(--text-muted);
}
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Why hero — full viewport height on desktop */
.why-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 120px;
}

/* Why hero with a photo background (e.g. ROI) */
.why-hero--photo {
  position: relative;
  overflow: hidden;
}
.why-hero--photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,1) 100%),
    url('/landing/assets/moeny.jpg') bottom/cover no-repeat fixed;
  filter: blur(5px);
  transform: scale(1.05);
  z-index: 0;
  pointer-events: none;
}
.why-hero--photo .container { position: relative; z-index: 1; }

/* Price split header */
.price-split {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 32px;
}
.price-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
}
.price-split h2 {
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.98;
  font-size: clamp(46px, 6.4vw, 88px);
  text-align: left; text-wrap: balance;
}
.price-split-right {
  display: flex; flex-direction: column; gap: 18px; max-width: 740px;
}
.price-split-right p {
  font-size: 24px; line-height: 1.55; color: var(--text); text-align: left;
}
.price-split-right p strong { color: var(--text); font-weight: 700; }

@media (max-width: 980px) {
  .why-hero { min-height: auto; padding: 80px 0 60px; }
}

/* ===== Security page — deterministic grid ===== */
.det-head { max-width: 760px; margin-bottom: 48px; }
.det-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 22px; }
.det-lead { display: flex; flex-direction: column; gap: 14px; }
.det-lead p { font-size: 17px; line-height: 1.6; color: var(--text); }
.det-lead p strong { color: var(--text); font-weight: 600; }
.det-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 52px; margin-top: 48px; }
.det-item { display: flex; gap: 20px; align-items: flex-start; }
.det-ico {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.det-ico svg { width: 28px; height: 28px; }
.det-text { padding-top: 4px; }
.det-text h3 { font-size: 18px; letter-spacing: -0.02em; margin: 0 0 8px; }
.det-text p { font-size: 15px; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Security page — timeline layers */
.sec-intro { max-width: 760px; margin-bottom: 52px; }
.sec-intro h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; }
.sec-intro p { font-size: 17px; line-height: 1.6; color: var(--text); }
.sec-intro p + p { margin-top: 16px; }
.sec-intro p strong { color: var(--text); font-weight: 600; }

.layers { display: flex; flex-direction: column; gap: 28px; }
.layer {
  display: grid; grid-template-columns: 56px 1fr; gap: 28px;
}
.layer-num {
  position: relative; display: flex; align-items: flex-start; justify-content: center;
}
.layer-num::before {
  content: ''; position: absolute; top: 8px; bottom: -28px; width: 2px;
  background: var(--border);
}
.layer:last-child .layer-num::before { display: none; }
.layer-num span {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(29,78,216,0.6);
}
.layer-body {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow-md); padding: 26px 30px 30px;
}
.layer-body h3 { font-size: 23px; margin-bottom: 12px; }
.layer-body > p { font-size: 16px; line-height: 1.62; color: var(--text); }
.layer-body > p + p { margin-top: 12px; }
.layer-body p strong { color: var(--text); font-weight: 600; }

.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-top: 18px; margin-bottom: 16px; }
.checklist--stack { grid-template-columns: 1fr; gap: 12px; }
.checklist--stack li { font-weight: 600; }
.checklist li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 15.5px; line-height: 1.45; color: var(--text); font-weight: 500;
}
.checklist svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 820px) {
  .det-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .layer { grid-template-columns: 44px 1fr; gap: 18px; }
  .layer-num span { width: 38px; height: 38px; font-size: 16px; }
  .layer-body { padding: 22px 22px 24px; }
}

/* ===== Team page — V5 sticky sidebar ===== */
.team-v5 {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 64px; align-items: start;
  padding-top: 64px; padding-bottom: 80px;
}
.v5-side { position: sticky; top: 96px; }
.v5-photo {
  width: 100%; aspect-ratio: 5/6;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  overflow: hidden;
}
.v5-photo img { width: 100%; height: 100%; object-fit: cover; }
.v5-side .nm { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; margin-top: 18px; }
.v5-side .rl { font-size: 14.5px; color: var(--text-muted); margin-top: 3px; }
.v5-side .btn { display: flex; width: 100%; margin-top: 22px; justify-content: center; }
.v5-main { max-width: 680px; }
.v5-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--secondary);
}
.v5-main h1 {
  font-size: clamp(34px, 4.4vw, 50px);
  margin: 16px 0 22px; letter-spacing: -0.03em; line-height: 1.06;
}
.v5-hero-p {
  font-size: 19px; line-height: 1.55; color: var(--text);
  margin: 0 0 34px; padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}
.v5-hero-p strong { color: var(--text); font-weight: 600; }
.v5-lead {
  font-size: 20px; line-height: 1.5; color: var(--text);
  font-weight: 500; margin: 0 0 18px; letter-spacing: -0.01em;
}
.v5-lead strong { font-weight: 700; }
.v5-main p.body {
  font-size: 16.5px; line-height: 1.66; color: var(--text); margin: 0 0 15px;
}
.v5-main p.body strong { color: var(--text); font-weight: 600; }
.v5-h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 18px; }
.v5-cta {
  margin-top: 44px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.v5-cta h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.v5-cta p { font-size: 17px; line-height: 1.6; color: var(--text); margin: 0; }
.v5-cta .btn { margin-top: 20px; }

@media (max-width: 760px) {
  .team-v5 { grid-template-columns: 1fr; gap: 36px; }
  .v5-side { position: static; }
  .v5-photo { max-width: 320px; }
}
