/* ═══════════════════════════════════════════════════════════
   template.crm.css — CRM page styles
   Inherits: template.css (reset, variables, buttons, nav, footer)
   Ordered by HTML section flow
   ═══════════════════════════════════════════════════════════ */

/* ============= KEYFRAMES ============= */

@keyframes pulse {
  0%, 100% { opacity: 1 }
  50% { opacity: .4 }
}

@keyframes spin {
  to { transform: rotate(360deg) }
}

@keyframes spinR {
  to { transform: rotate(-360deg) }
}

@keyframes dash {
  to { stroke-dashoffset: -16 }
}

@keyframes corePulse {
  0% { transform: scale(1); opacity: .8 }
  100% { transform: scale(2.2); opacity: 0 }
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}


/* ============= HEADING HIERARCHY RESETS ============= */

h2.label,
h2.section-eyebrow,
h2.numbers-eyebrow,
h2.hero-eyebrow {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  line-height: inherit;
}

h3.section-title,
h3.numbers-title {
  margin: 0;
  padding: 0;
}


/* ============= SECTION COMMON ============= */

.section {
  padding: 120px 64px;
  position: relative;
}

.section-inner {
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 50%;
}


/* ============= 01 — HERO ============= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 220px);
  padding: 140px 80px 100px;
}

.label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}

.hero-copy .label {
  margin-bottom: 32px;
}

.hero-copy .h1-display {
  margin: 0 0 28px;
  font-size: clamp(48px, 6.5vw, 60px);
  line-height: .9;
}

.hero-copy .h1-display em {
  font-style: normal;
  color: var(--orange);
}

.hero-copy .lead {
  max-width: 80%;
  margin-bottom: 40px;
}

.hero-copy .ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-arrow {
  font-size: 14px;
}

/* IMS visual: browser-window framing */
.ims-vis {
  position: relative;
  width: 100%;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

@media (min-width: 992px) {
  .ims-vis {
    margin-right: -60px;
  }
}

.ims-screen {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(7, 40, 52, 0.1);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  transform: rotateY(12deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, .18),
    0 8px 20px rgba(0, 0, 0, .12),
    20px 20px 40px rgba(0, 0, 0, .08);
  will-change: transform;
}

.ims-screen img {
  display: block;
}

.ims-screen-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--cream);
  border-bottom: 1px solid rgba(7, 40, 52, 0.08);
  flex-shrink: 0;
  text-align: left;
  direction: ltr;
}

.ims-screen-bar > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(7, 40, 52, 0.18);
}

.ims-screen-bar > span:first-child { background: #FF6B5B; }
.ims-screen-bar > span:nth-child(2) { background: #FFC95B; }
.ims-screen-bar > span:nth-child(3) { background: var(--green); }

.ims-url {
  margin-right: 16px;
  background: var(--white);
  border: 1px solid rgba(7, 40, 52, 0.08);
  border-radius: 999px;
  padding: 5px 16px;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  direction: ltr;
  flex: 1;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 28px;
  background: var(--muted);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@media(max-width:768px) {
  .ims-screen { transform: none; }
}


/* ============= 02 — MULTIPLE CHANNELS + ORBIT ============= */

.multiple-channels-one-platform {
  background: var(--cream);
  padding: 140px 80px 100px;
  font-size: 1.25rem;
  text-align: center;
}

.multiple-channels-one-platform h3 {
  font-size: clamp(48px, 6.5vw, 60px);
}

/* ORBIT VISUAL */
.orbit-stage {
  position: relative;
  margin: 0 auto 0;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 1.5/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.orbit-bg svg {
  width: 100%;
  height: 100%;
  max-width: 900px;
  max-height: 600px;
}

.orbit-ring {
  fill: none;
  stroke: rgba(7, 76, 103, .12);
  stroke-width: 1;
  stroke-dasharray: 3 6;
}

.orbit-ring--solid {
  stroke: rgba(7, 76, 103, .18);
  stroke-dasharray: none;
}

.orbit-ring--faint {
  opacity: .2;
}

.orbit-spin {
  transform-origin: 450px 300px;
  animation: spin 50s linear infinite;
}

.orbit-spin-r {
  transform-origin: 450px 300px;
  animation: spinR 80s linear infinite;
}

/* Orbit core */
.orbit-core {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--navy) 0, var(--navy-deep) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 30px 80px rgba(7, 76, 103, .4), 0 0 0 14px rgba(7, 76, 103, .06), 0 0 0 28px rgba(7, 76, 103, .03);
  z-index: 5;
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(166, 198, 50, .4);
  animation: pulse 2.4s ease-in-out infinite;
}

.orbit-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--lime);
  opacity: 0;
  animation: corePulse 3s ease-out infinite;
}

.orbit-core-mark {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lime);
  opacity: .85;
}

.orbit-core-name {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}

.orbit-core-sub {
  font-size: 12px;
  opacity: .6;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* Orbit chips */
.orbit-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(7, 76, 103, .10);
  z-index: 4;
  min-width: 200px;
  transition: transform .3s;
  transform: translate(-50%, -50%);
}

.orbit-chip:hover {
  transform: translate(-50%, calc(-50% - 3px));
}

.orbit-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

/* Orbit chip icon color variants */
.orbit-chip-icon--orange { background: var(--orange); }
.orbit-chip-icon--blue { background: var(--blue); }
.orbit-chip-icon--green { background: var(--green); }
.orbit-chip-icon--lime { background: var(--lime); color: var(--navy); }
.orbit-chip-icon--salmon { background: var(--salmon); color: var(--dark); }
.orbit-chip-icon--navy { background: var(--navy); }
.orbit-chip-icon--whatsapp { background: #25d366; }
.orbit-chip-icon--dark { background: var(--dark); }

.orbit-chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.orbit-chip-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
}

/* Orbit chip positions — inner ring (5 chips, 72° apart, ellipse 20%×28%) */
.orbit-chip[data-pos="in-1"] { left: 50%;  top: 12%;  }
.orbit-chip[data-pos="in-2"] { left: 20%;  top: 41%;  }
.orbit-chip[data-pos="in-3"] { left: 32%;  top: 73%;  }
.orbit-chip[data-pos="in-4"] { left: 68%;  top: 73%;  }
.orbit-chip[data-pos="in-5"] { left: 79%;  top: 41%;  }

/* Orbit chip positions — outer ring (5 chips, offset 36°, ellipse 30%×36%) */
.orbit-chip[data-pos="out-1"] { left: 32%;  top: 24%;  }
.orbit-chip[data-pos="out-2"] { left: 21%;  top: 58%;  }
.orbit-chip[data-pos="out-3"] { left: 50%;  top: 86%;  }
.orbit-chip[data-pos="out-4"] { left: 79%;  top: 58%;  }
.orbit-chip[data-pos="out-5"] { left: 68%;  top: 24%;  }


/* ============= 03 — CAPABILITIES ============= */

.caps {
  background: var(--navy);
  color: var(--white);
  padding: 140px 80px 100px;
}

.caps .section-eyebrow { color: var(--lime); }
.caps .section-title { color: var(--white); }
.caps .section-lead { color: rgba(255, 255, 255, .65); }

.caps-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  border-radius: 24px;
  overflow: hidden;
}

.cap {
  padding: 36px 32px;
  background: rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
  transition: background .25s;
}

.cap:hover { background: var(--blue); }

.cap-num {
  font-size: 11px;
  color: var(--lime);
  letter-spacing: .08em;
}

.cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--white);
}

.cap-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.55;
  flex: 1;
}

.cap-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .06em;
}


/* ============= 04 — NUMBERS ============= */

.numbers {
  padding: 140px 80px 100px;
  position: relative;
  overflow: hidden;
}

.numbers-head {
  position: relative;
  margin-bottom: 80px;
}

.numbers-eyebrow {
  color: var(--lime);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.numbers-title {
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 700;
  max-width: 760px;
  margin: 0 auto;
}

.numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.num-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.num-val {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  font-feature-settings: "tnum";
}

.num-val .unit {
  font-size: .5em;
  color: var(--lime);
  font-weight: 500;
  margin-right: 4px;
  letter-spacing: 0;
}

.num-label {
  font-size: 14px;
  opacity: .7;
  line-height: 1.4;
}


/* ============= 05 — DAY IN THE LIFE (HERO-B) ============= */

.dir-b .hero-b {
  position: relative;
  padding: 96px 80px;
  min-height: 980px;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid #E5DECB;
}

.dir-b .hero-eyebrow {
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  text-align: center;
}

.dir-b .hero-eyebrow .ps-label { color: var(--orange); }

.dir-b .hero-h1 {
  margin: 0 auto;
  font-size: 80px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 12px;
  text-align: center;
}

.dir-b .hero-h1 b { font-weight: 600; }
.dir-b .hero-h1 .accent { color: var(--green); font-weight: 500; }

.dir-b .hero-sub {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark);
}

/* Persona Picker */
.dir-b .persona-picker {
  display: flex;
  gap: 20px;
  margin: 48px auto 0;
  justify-content: center;
}

.dir-b .persona-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 32px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(7, 40, 52, 0.06);
  position: relative;
}

.dir-b .persona-card:hover {
  box-shadow: 0 4px 16px rgba(7, 40, 52, 0.12);
  transform: translateY(-2px);
}

.dir-b .persona-card.is-active {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 139, 34, 0.18), 0 0 0 3px rgba(255, 139, 34, 0.08);
}

.dir-b .persona-card.is-active::after {
  content: "✓";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.dir-b .persona-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Persona avatar gradient variants */
.persona-avatar--shira { background: linear-gradient(135deg, #FF8B22, #F9C1B9); }
.persona-avatar--ido { background: linear-gradient(135deg, #2688BF, #074C67); }
.persona-avatar--noa { background: linear-gradient(135deg, #A6C632, #007C4D); }

.dir-b .persona-info { text-align: right; }

.dir-b .persona-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.dir-b .persona-role {
  font-size: 14px;
  color: #626262;
  line-height: 1.4;
}

/* Stage layout */
.dir-b .stage {
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

/* Timeline */
.dir-b .timeline { position: relative; padding-right: 36px; }

.dir-b .timeline::before {
  content: "";
  position: absolute;
  right: 9px;
  top: 16px; bottom: 16px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--blue) 30%, var(--lime) 60%, var(--navy) 100%);
  border-radius: 2px;
}

.dir-b .tl-item {
  position: relative;
  padding: 16px 0 24px;
  cursor: pointer;
  transition: opacity .25s;
}

.dir-b .tl-item:not(.is-active) { opacity: 0.45; }

.dir-b .tl-item::before {
  content: "";
  position: absolute;
  right: -36px; top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid #C9C0A6;
  transition: background .25s, border-color .25s, transform .25s;
}

.dir-b .tl-item.is-active::before {
  background: var(--tc, var(--orange));
  border-color: var(--tc, var(--orange));
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(255, 139, 34, 0.12);
}

.dir-b .tl-time {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dir-b .tl-time .tag {
  font-size: 11px;
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--tc, var(--orange));
  background: rgba(255, 139, 34, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .25s;
}

.dir-b .tl-item.is-active .tag { opacity: 1; }

.dir-b .tl-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.dir-b .tl-detail { font-size: 14.5px; line-height: 1.55; color: #626262; }

.dir-b .tl-controls { display: flex; gap: 10px; margin-top: 32px; padding-right: 36px; }

.dir-b .tl-step-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid #D3C9B3;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--dark);
  transition: background .2s, color .2s;
}

.dir-b .tl-step-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.dir-b .tl-step-count {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 14px;
  color: #626262;
  align-self: center;
  margin-right: 8px;
}

.dir-b .tl-step-count b { color: var(--navy); font-weight: 600; }

/* Dashboard mockup */
.ps-mock {
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 40px 80px -20px rgba(7, 40, 52, 0.18),
    0 8px 24px rgba(7, 40, 52, 0.06),
    0 0 0 1px rgba(7, 40, 52, 0.06);
  overflow: hidden;
  position: relative;
  direction: rtl;
  --psg: #007C4D;
  --psg-deep: #005F3B;
  --psg-soft: #E6F3EC;
}

.ps-mock-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--cream);
  border-bottom: 1px solid #ECE6D2;
}

.ps-mock-chrome .ps-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ps-mock-chrome .ps-mock-url {
  background: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: #626262;
  margin-right: auto;
  font-family: 'Clash Grotesk', sans-serif;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ps-mock-chrome .ps-mock-url svg { width: 12px; height: 12px; }

.ps-mock-body2 {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  background: #F4EFE3;
  min-height: 750px;
}

.ps-mock-body2 > .ps-side { grid-column: 1; grid-row: 1; }
.ps-mock-body2 > .ps-main { grid-column: 2; grid-row: 1; }

/* MAIN COLUMN */
.ps-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #F4EFE3;
  min-width: 0;
}

.ps-greet { background: #F4EFE3; padding: 8px 0 18px; }

.ps-greet-title {
  font-size: 24px;
  line-height: 1.15;
  color: var(--psg);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.ps-greet-rule { height: 1px; background: #D8D3C5; margin-bottom: 12px; }
.ps-greet-sub { font-size: 13px; line-height: 1.55; color: #6e7470; margin: 0; }

.ps-cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.ps-card2 {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 16px 14px;
  border: 1px solid #E8E2D3;
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity .35s, box-shadow .35s, transform .35s;
}

.ps-card2-head { display: flex; align-items: center; gap: 8px; flex-direction: row-reverse; justify-content: flex-start; }
.ps-card2-ttl { font-size: 16px; font-weight: 700; color: var(--psg); letter-spacing: -0.01em; }
.ps-card2-ic { width: 28px; height: 28px; display: grid; place-items: center; color: var(--psg); }
.ps-card2-divider { height: 1px; background: #E5DFCF; margin: 2px 0 4px; }

.ps-msg-row {
  background: var(--white);
  border: 1px solid #DAD3C0;
  border-right: 4px solid var(--psg);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #4a4a48;
  font-family: 'Clash Grotesk', 'Heebo', sans-serif;
  letter-spacing: -0.01em;
  gap: 8px;
}

.ps-msg-row .ps-msg-sender { color: var(--psg); font-weight: 600; font-style: italic; }
.ps-msg-row .ps-msg-arrow { color: var(--psg); font-size: 9px; }
.ps-msg-row .ps-msg-when { margin-right: auto; color: #626262; }

.ps-card2-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--psg);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  width: max-content;
  margin-top: 2px;
  cursor: pointer;
}

.ps-req-row-new { display: flex; align-items: center; gap: 12px; padding: 6px 0; }
.ps-req-text { flex: 1; font-size: 12.5px; line-height: 1.5; color: #4a4a48; }

.ps-action-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--psg);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.ps-action-btn:hover { background: var(--psg-deep); }
.ps-action-btn .chev { font-size: 12px; line-height: 1; }

/* HERO PHOTO CARD */
.ps-hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
}

.ps-hero-img { position: relative; }

.ps-hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 30% 30%, #f9e5cb 0%, #f3d4b3 50%, #ddb38e 100%),
    linear-gradient(180deg, #fff 0%, #efd9bd 100%);
  background-blend-mode: multiply;
}

.ps-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 35% at 22% 70%, rgba(70, 40, 18, 0.18) 0%, transparent 65%),
    radial-gradient(28% 28% at 60% 75%, rgba(70, 40, 18, 0.18) 0%, transparent 65%),
    radial-gradient(18% 60% at 86% 50%, rgba(38, 72, 40, 0.22) 0%, transparent 65%),
    radial-gradient(60% 30% at 50% 22%, rgba(255, 250, 235, 0.7) 0%, transparent 70%);
}

.ps-hero-photo::after {
  content: "";
  position: absolute;
  top: 8%; left: 6%;
  width: 32%; height: 46%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.55) 100%);
  border-radius: 4px;
  mix-blend-mode: screen;
  filter: blur(0.5px);
}

.ps-hero-overlay {
  background: linear-gradient(270deg, rgba(0, 124, 77, 0.96) 0%, rgba(0, 124, 77, 0.94) 70%, rgba(0, 124, 77, 0.0) 100%);
  color: var(--white);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.ps-hero-h { font-size: 26px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.ps-hero-sub { font-size: 13px; line-height: 1.45; color: rgba(255, 255, 255, 0.9); margin: 0 0 8px; }
.ps-hero-cta { display: flex; gap: 6px; flex-wrap: wrap; }

.ps-hero-btn {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--psg);
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--white);
  transition: opacity .2s;
}

.ps-hero-btn:hover { opacity: 0.92; }

/* SIDEBAR */
.ps-side {
  background: var(--psg);
  color: var(--white);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
}

.ps-side-head {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  padding: 10px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 4px;
}

.ps-side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  cursor: pointer;
  position: relative;
  font-weight: 400;
  transition: opacity .3s;
}

.ps-side-item:last-child { border-bottom: none; }
.ps-side-item .ps-side-lbl { flex: 1; text-align: right; letter-spacing: -0.01em; }
.ps-side-item svg { flex-shrink: 0; opacity: 0.95; }
.ps-side-item.is-muted { opacity: 0.7; }
.ps-side-item.is-active { background: rgba(255, 255, 255, 0.12); font-weight: 700; }

.ps-side-item.is-active::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 3px;
  background: var(--lime);
}

.ps-side-ext { font-size: 10px; opacity: 0.6; }


/* ============= TIMELINE MOCK SCENES ============= */

.scn-page-title { font-size: 15px; font-weight: 700; color: var(--psg); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #E5DFCF; letter-spacing: -0.01em; }

.scn-inbox { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.scn-mail-item { display: flex; align-items: flex-start; gap: 8px; padding: 9px 11px; background: #fff; border: 1px solid #E8E2D3; border-radius: 10px; font-size: 11px; cursor: pointer; }
.scn-mail-item.is-unread { background: rgba(0,124,77,.04); border-color: var(--psg); }
.scn-mail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--psg); flex-shrink: 0; margin-top: 4px; }
.scn-mail-item:not(.is-unread) .scn-mail-dot { visibility: hidden; }
.scn-mail-body { flex: 1; min-width: 0; }
.scn-mail-from { font-weight: 700; color: var(--psg-deep); margin-bottom: 1px; font-size: 11.5px; }
.scn-mail-subject { color: #333; font-weight: 500; }
.scn-mail-preview { color: #999; font-size: 10px; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scn-mail-time { font-size: 9.5px; color: #aaa; flex-shrink: 0; }
.scn-mail-open { background: #fff; border: 1px solid #E8E2D3; border-radius: 12px; padding: 12px; }
.scn-mail-open-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.scn-mail-open-from { font-weight: 700; font-size: 12px; color: var(--psg-deep); }
.scn-mail-open-date { font-size: 9.5px; color: #aaa; }
.scn-mail-open-body { font-size: 11px; line-height: 1.55; color: #555; margin-bottom: 10px; }
.scn-sign-btn { background: var(--psg); color: #fff; border: none; border-radius: 999px; padding: 7px 16px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; }

.scn-pay-summary { background: var(--psg-soft); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.scn-pay-total-label { font-size: 11px; color: var(--psg-deep); }
.scn-pay-total { font-size: 20px; font-weight: 700; color: var(--psg); font-family: 'Clash Grotesk', sans-serif; letter-spacing: -0.02em; }
.scn-pay-table { display: flex; flex-direction: column; gap: 4px; }
.scn-pay-row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 8px 12px; background: #fff; border: 1px solid #E8E2D3; border-radius: 8px; font-size: 11px; color: #444; }
.scn-pay-row.scn-pay-header { background: transparent; border: none; font-weight: 600; color: #999; font-size: 9.5px; padding-bottom: 2px; }
.scn-pay-row.is-highlight { border-color: var(--orange); background: rgba(255,139,34,.04); }

.scn-badge { font-size: 9.5px; font-weight: 600; padding: 2px 9px; border-radius: 999px; white-space: nowrap; }
.scn-badge-green { background: rgba(0,124,77,.1); color: var(--psg); }
.scn-badge-orange { background: rgba(255,139,34,.1); color: #d06800; }
.scn-badge-blue { background: rgba(38,136,191,.1); color: #1a7aaa; }

.scn-interests { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.scn-interest-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #fff; border: 1px solid #E8E2D3; border-radius: 10px; font-size: 11.5px; color: #444; }
.scn-interest-val { opacity: .6; font-size: 12px; }

.scn-toggle { width: 32px; height: 16px; border-radius: 999px; background: #D3C9B3; position: relative; flex-shrink: 0; }
.scn-toggle::after { content: ''; position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: #fff; transition: transform .2s; }
.scn-toggle.is-on { background: var(--psg); }
.scn-toggle.is-on::after { transform: translateX(-16px); }

.scn-interest-preview { background: #fff; border: 1px solid #E8E2D3; border-radius: 12px; padding: 12px; border-right: 3px solid var(--lime); }
.scn-interest-preview-badge { font-size: 9.5px; font-weight: 600; color: #6b8a10; background: rgba(166,198,50,.15); display: inline-block; padding: 2px 9px; border-radius: 999px; margin-bottom: 6px; }
.scn-interest-preview-title { font-size: 12.5px; font-weight: 700; color: #333; margin-bottom: 3px; }
.scn-interest-preview-body { font-size: 10.5px; color: #777; line-height: 1.5; margin-bottom: 8px; }
.scn-interest-cta { background: var(--lime); color: var(--navy); border: none; border-radius: 999px; padding: 6px 14px; font-size: 10.5px; font-weight: 600; cursor: pointer; font-family: inherit; }

.scn-requests { display: flex; flex-direction: column; gap: 6px; }
.scn-req-item { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: #fff; border: 1px solid #E8E2D3; border-radius: 12px; font-size: 11px; }
.scn-req-item.is-new { border-color: var(--blue); background: rgba(38,136,191,.03); }
.scn-req-id { font-family: 'Clash Grotesk', sans-serif; font-size: 10.5px; color: #aaa; flex-shrink: 0; min-width: 48px; }
.scn-req-body { flex: 1; min-width: 0; }
.scn-req-subject { font-weight: 600; color: #333; margin-bottom: 1px; }
.scn-req-meta { font-size: 9.5px; color: #aaa; }


/* ============= 06 — AUDIENCE SPLIT ============= */

.split {
  background: var(--warm-white);
  display: none;
}

.split-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-card {
  position: relative;
  border-radius: 32px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 480px;
  overflow: hidden;
  transition: transform .25s;
  border: 1px solid var(--line);
}

.split-card:hover { transform: translateY(-4px); }

.split-card--muni {
  background: linear-gradient(155deg, #0a607f 0%, var(--navy-deep) 100%);
  color: var(--white);
}

.split-card--biz {
  background: linear-gradient(155deg, var(--warm-white) 0%, var(--cream) 100%);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, .08);
}

.split-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .6;
}

.split-card-bg svg { width: 100%; height: 100%; }

.split-mini {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: .85;
}

.split-mini-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 99px;
  font-size: 11px;
  color: var(--white);
  letter-spacing: .04em;
}

.split-card--biz .split-mini-row {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .06);
  color: var(--dark);
}

.split-mini-row span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Split mini-row dot color variants */
.split-dot--orange { background: var(--orange); }
.split-dot--lime { background: var(--lime); }
.split-dot--blue { background: var(--blue); }
.split-dot--green { background: var(--green); }

.split-tag {
  position: relative;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 99px;
}

.split-card--muni .split-tag {
  background: rgba(166, 198, 50, .18);
  color: var(--lime);
  border: 1px solid rgba(166, 198, 50, .3);
}

.split-card--biz .split-tag {
  background: rgba(255, 139, 34, .12);
  color: var(--orange);
  border: 1px solid rgba(255, 139, 34, .3);
}

.split-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px currentColor;
  opacity: .4;
}

.split-title {
  position: relative;
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.split-desc {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  max-width: 420px;
}

.split-card--muni .split-desc { color: rgba(255, 255, 255, .8); }
.split-card--biz .split-desc { color: var(--muted); }

.split-bullets {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.split-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.split-bullet::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.split-card--muni .split-bullet::before { background: var(--lime); }
.split-card--biz .split-bullet::before { background: var(--orange); }

.split-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s, background .2s;
  align-self: stretch;
}

.split-card--muni .split-cta {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
}

.split-card--muni .split-cta:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

.split-card--biz .split-cta { background: var(--navy); color: var(--white); }
.split-card--biz .split-cta:hover { background: var(--dark); }

.split-cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}


/* ============= 07 — FOOTER CTA ============= */

.fc {
  padding: 120px 64px;
  background: var(--warm-white);
}

.fc-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 40px;
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.fc-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 198, 50, .35), transparent 70%);
}

.fc-text { position: relative; }

.fc-title {
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 700;
  margin-bottom: 20px;
}

.fc-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 440px;
}

.fc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fc-blocks {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  aspect-ratio: 1;
  transform: rotate(-8deg);
  max-width: 380px;
  justify-self: end;
}

.fc-b {
  border-radius: 8px;
  transition: transform .3s;
}

.fc-b:hover { transform: scale(1.08); }

.fc-b[data-c="lime"] { background: var(--lime); }
.fc-b[data-c="blue"] { background: var(--blue); }
.fc-b[data-c="orange"] { background: var(--orange); }
.fc-b[data-c="salmon"] { background: var(--salmon); }
.fc-b[data-c="navy"] { background: var(--navy); }
.fc-b[data-c="green"] { background: var(--green); }
.fc-b[data-c="cream"] { background: var(--warm-white); }


/* ============= RESPONSIVE ============= */

/* ---------- Tablet / small desktop (≤1200px) ---------- */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 40px;
    padding: 120px 48px 80px;
  }

  .multiple-channels-one-platform { padding: 100px 48px 80px; }
  .caps { padding: 100px 48px 80px; }
  .numbers { padding: 100px 48px 80px; }
  .dir-b .hero-b { padding: 80px 48px; }
  .fc { padding: 80px 32px; }

  .section { padding: 100px 48px; }
  .section-lead { max-width: 70%; }

  .dir-b .stage {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 32px;
  }

  .dir-b .hero-h1 { font-size: 60px; }
}

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px 32px 60px;
    min-height: auto;
  }

  .hero-copy .lead { max-width: 100%; }

  .ims-vis { margin-right: 0 !important; max-width: 600px; margin: 0 auto; }
  .ims-screen { transform: none; }

  .section { padding: 80px 32px; }
  .section-lead { max-width: 100%; }

  .multiple-channels-one-platform {
    padding: 80px 32px 60px;
  }

  .multiple-channels-one-platform h3 { font-size: clamp(36px, 5vw, 48px); }

  .orbit-stage {
    aspect-ratio: auto;
    min-height: 520px;
  }

  .caps { padding: 80px 32px; }

  .caps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .numbers { padding: 64px 32px; }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Hero-B: stack timeline + mock vertically */
  .dir-b .hero-b { padding: 64px 32px; min-height: auto; }
  .dir-b .hero-h1 { font-size: 48px; }
  .dir-b .hero-sub { font-size: 17px; }

  .dir-b .stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dir-b .timeline { padding-right: 36px; }

  .ps-mock-body2 { min-height: 550px; }

  .fc { padding: 64px 24px; }
  .fc-card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    border-radius: 28px;
  }

  .fc-blocks {
    max-width: 280px;
    justify-self: center;
  }

  .lead-section { padding: 80px 32px; }
  .lead-section h2 { font-size: 48px; }
  .lead-section p { font-size: 17px; }
}

/* ---------- Small tablet / large mobile (≤768px) ---------- */
@media (max-width: 768px) {
  .hero-grid {
    padding: 100px 20px 48px;
    gap: 36px;
  }

  .hero-copy h1 { font-size: clamp(36px, 8vw, 48px); line-height: 1; }
  .hero-copy .label { margin-bottom: 20px; }

  .scroll-cue { display: none; }

  .multiple-channels-one-platform {
    padding: 64px 20px 48px;
  }

  .multiple-channels-one-platform h3 { font-size: clamp(28px, 5.5vw, 40px); }
  .multiple-channels-one-platform p { font-size: 16px; }

  /* Orbit: hide chips and show only core on small screens */
  .orbit-stage { min-height: 340px; }
  .orbit-chip { display: none; }
  .orbit-core { width: 180px; height: 180px; }
  .orbit-core-name { font-size: 36px; }

  .section { padding: 64px 20px; }

  .caps { padding: 64px 20px; }
  .caps-grid { grid-template-columns: 1fr; gap: 4px; }
  .cap { min-height: auto; padding: 28px 24px; }

  .numbers { padding: 48px 20px; }
  .numbers-head { margin-bottom: 48px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .dir-b .hero-b { padding: 48px 20px; }
  .dir-b .hero-h1 { font-size: 36px; }

  /* Persona picker: horizontal scroll */
  .dir-b .persona-picker {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    margin: 32px auto 0;
    justify-content: flex-start;
  }

  .dir-b .persona-card {
    flex-shrink: 0;
    padding: 12px 20px 12px 24px;
  }

  .dir-b .persona-avatar { width: 40px; height: 40px; }
  .dir-b .persona-name { font-size: 15px; }
  .dir-b .persona-role { font-size: 12px; }

  .dir-b .stage { gap: 24px; margin-top: 40px; }

  .dir-b .tl-title { font-size: 17px; }
  .dir-b .tl-detail { font-size: 13px; }

  /* Mock sidebar: collapse */
  .ps-mock-body2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ps-mock-body2 > .ps-side { display: none; }
  .ps-mock-body2 > .ps-main { grid-column: 1; }

  .fc-card { padding: 36px 24px; border-radius: 24px; gap: 40px; }
  .fc-title { margin-bottom: 16px; }
  .fc-desc { font-size: 16px; margin-bottom: 28px; }
  .fc-blocks { max-width: 240px; }

  .lead-section { padding: 64px 20px; }
  .lead-section h2 { font-size: 36px; }
  .lead-section p { font-size: 16px; }

  .split-card { padding: 36px 28px; min-height: auto; border-radius: 24px; }
}

/* ---------- Mobile (≤480px) ---------- */
@media (max-width: 480px) {
  .hero-grid {
    padding: 90px 16px 36px;
    gap: 28px;
  }

  .hero-copy h1 { font-size: 32px; }
  .hero-copy .lead { font-size: 15px; }
  .hero-copy .ctas { flex-direction: column; }
  .hero-copy .ctas .btn { width: 100%; text-align: center; justify-content: center; }

  .ims-screen-bar { padding: 8px 10px; }
  .ims-screen-bar > span { width: 8px; height: 8px; }
  .ims-url { font-size: 10px; padding: 4px 10px; }

  .multiple-channels-one-platform { padding: 48px 16px 36px; }
  .multiple-channels-one-platform h3 { font-size: 26px; }
  .multiple-channels-one-platform p { font-size: 14px; }

  .orbit-stage { min-height: 260px; }
  .orbit-core { width: 140px; height: 140px; }
  .orbit-core-name { font-size: 28px; }
  .orbit-core-mark { font-size: 9px; }
  .orbit-core-sub { font-size: 10px; }

  .section { padding: 48px 16px; }

  .caps { padding: 48px 16px; }
  .cap { padding: 24px 20px; }
  .cap-title { font-size: 18px; }
  .cap-desc { font-size: 13px; }

  .numbers { padding: 36px 16px; }
  .numbers-head { margin-bottom: 32px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 0; }
  .num-cell { padding: 20px 0; }
  .num-val { font-size: 48px; }

  .dir-b .hero-b { padding: 36px 16px; }
  .dir-b .hero-h1 { font-size: 28px; letter-spacing: -0.02em; }
  .dir-b .hero-sub { font-size: 15px; }

  .dir-b .persona-picker { gap: 8px; margin-top: 24px; }

  .dir-b .persona-card {
    padding: 10px 14px;
    gap: 10px;
  }

  .dir-b .persona-avatar { width: 36px; height: 36px; }
  .dir-b .persona-avatar svg { width: 20px; height: 20px; }
  .dir-b .persona-name { font-size: 14px; }
  .dir-b .persona-role { font-size: 11px; }

  .dir-b .stage { margin-top: 28px; gap: 20px; }

  .dir-b .timeline { padding-right: 28px; }
  .dir-b .timeline::before { right: 7px; }
  .dir-b .tl-item::before { right: -28px; width: 14px; height: 14px; }
  .dir-b .tl-title { font-size: 15px; }
  .dir-b .tl-detail { font-size: 12.5px; }
  .dir-b .tl-time { font-size: 12px; }
  .dir-b .tl-time .tag { font-size: 10px; padding: 2px 8px; }
  .dir-b .tl-controls { padding-right: 28px; }

  .ps-main { padding: 16px; }
  .ps-greet-title { font-size: 20px; }
  .scn-page-title { font-size: 13px; }

  .fc { padding: 36px 16px; }
  .fc-card { padding: 28px 20px; border-radius: 20px; gap: 28px; }
  .fc-title { font-size: 28px; }
  .fc-desc { font-size: 15px; margin-bottom: 24px; }
  .fc-actions { flex-direction: column; }
  .fc-actions a { text-align: center; justify-content: center; }
  .fc-blocks { max-width: 200px; gap: 6px; }

  .lead-section { padding: 60px 16px; }
  .lead-section .cta-inner { max-width: 100%; }
  .lead-section h2 { font-size: 32px; line-height: 1.15; }
  .lead-section p { font-size: 16px; margin-bottom: 24px; }

  .split-card { padding: 28px 20px; border-radius: 20px; }
  .split-title { font-size: 28px; }
  .split-desc { font-size: 14px; }
  .split-cta { font-size: 14px; padding: 14px 18px; border-radius: 14px; }
}
