/* ============================================================
   SHUL APP — Landing page styles
   Palette: deep navy + warm gold + parchment
   Type: Fraunces (display serif) + Inter (UI)
   ============================================================ */

:root {
  --navy: #0E1B2A;
  --navy-700: #12263A;
  --navy-500: #1f3247;
  --navy-300: #4a5b71;
  --gold: #C8A24D;
  --gold-bright: #D4B262;
  --gold-soft: #E8D7A7;
  --gold-tint: #F3E9CB;
  --parchment: #F7F3EA;
  --parchment-dark: #EDE6D5;
  --warm-white: #FBF8F1;
  --paper: #FFFCF5;
  --text: #46515F;
  --text-soft: #6b7685;
  --text-strong: #1c2735;
  --border: #E5DDCF;
  --border-soft: #EFE9DA;
  --success: #2E7D5B;
  --alert: #B94A48;
  --shadow-sm: 0 1px 2px rgba(14, 27, 42, 0.04), 0 2px 8px rgba(14, 27, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 27, 42, 0.06), 0 2px 6px rgba(14, 27, 42, 0.04);
  --shadow-lg: 0 24px 60px rgba(14, 27, 42, 0.10), 0 8px 24px rgba(14, 27, 42, 0.06);
  --shadow-xl: 0 40px 120px rgba(14, 27, 42, 0.14), 0 12px 40px rgba(14, 27, 42, 0.06);

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
}

#root {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
}

h1 { font-size: clamp(44px, 6vw, 84px); }
h2 { font-size: clamp(36px, 4.5vw, 60px); }
h3 { font-size: clamp(24px, 2.5vw, 32px); }
h4 { font-size: 20px; line-height: 1.25; }

p { margin: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--tight { padding: 80px 0; }

.section--parchment { background: var(--parchment); }
.section--navy { background: var(--navy); color: #c8d1de; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--warm-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { width: 32px; }
.eyebrow--center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
}

.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
}

.serif-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--navy);
  color: var(--warm-white);
  box-shadow: 0 8px 24px rgba(14, 27, 42, 0.18);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(14, 27, 42, 0.24);
  background: var(--navy-700);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(200, 162, 77, 0.32);
}
.btn--gold:hover {
  transform: translateY(-1px);
  background: var(--gold-bright);
  box-shadow: 0 12px 32px rgba(200, 162, 77, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(14, 27, 42, 0.18);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: rgba(14, 27, 42, 0.04);
}

.btn--ghost-light {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--lg { padding: 18px 32px; font-size: 16px; }

.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   CARD
   ============================================================ */

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.card--soft {
  background: rgba(255, 252, 245, 0.7);
  backdrop-filter: blur(8px);
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(14, 27, 42, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200, 162, 77, 0.3), transparent 60%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .15s ease;
}

.nav a:hover { color: var(--navy); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 880px) {
  .nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(200, 162, 77, 0.10), transparent 70%),
    radial-gradient(50% 70% at 0% 100%, rgba(14, 27, 42, 0.04), transparent 60%);
  pointer-events: none;
}

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

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 14ch;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--navy-700);
  background: linear-gradient(180deg, var(--navy) 60%, var(--gold) 60%, var(--gold) 70%, var(--navy) 70%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__sub {
  font-size: 20px;
  line-height: 1.55;
  max-width: 540px;
  color: var(--text);
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.hero__trust-item .check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* hero device frame side */
.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.hero__halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 77, 0.18), transparent 70%);
  z-index: 0;
}

.hero__float-card {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero__float-card--1 {
  top: 2%;
  left: -6%;
  animation-delay: 0s;
}

.hero__float-card--2 {
  bottom: 8%;
  right: -8%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__float-card .ring {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gold-tint);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}

.hero__float-card .ring--alert {
  background: rgba(185, 74, 72, 0.12);
  color: var(--alert);
}

.hero__float-card .meta {
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__float-card .label {
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   PHONE MOCKUP (built in CSS for premium feel)
   ============================================================ */

.phone {
  width: 320px;
  height: 660px;
  background: var(--navy);
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    0 50px 100px -20px rgba(14, 27, 42, 0.35),
    0 30px 60px -30px rgba(14, 27, 42, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.phone--lg {
  width: 360px;
  height: 740px;
}

.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--warm-white);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--navy);
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.phone__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.phone__statusbar .icons {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.phone__statusbar .icons svg { width: 14px; height: 14px; }

.phone__content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 16px 90px;
  scrollbar-width: none;
}
.phone__content::-webkit-scrollbar { display: none; }

.phone__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 16px;
}

.phone__shul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone__shul-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.phone__shul-name {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}

.phone__shul-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.phone__bell {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  position: relative;
}

.phone__bell::after {
  content: "";
  position: absolute;
  top: 8px; right: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--alert);
  border: 2px solid var(--parchment);
}

.phone__greeting {
  padding: 4px 4px 14px;
}

.phone__greeting-h {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2px;
}

.phone__greeting-d {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pcard {
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border-soft);
}

.pcard--navy {
  background: var(--navy);
  color: #d4dde9;
  border-color: var(--navy);
}

.pcard--gold {
  background: linear-gradient(135deg, var(--gold-tint), #fdf6e0);
  border: 1px solid var(--gold-soft);
}

.pcard__title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 600;
}

.pcard--navy .pcard__title { color: var(--gold); }

.minyan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 5px 0;
  gap: 8px;
  white-space: nowrap;
}

.minyan-row__label { color: var(--text); font-weight: 500; flex-shrink: 0; }

.pcard--navy .minyan-row__label { color: #c6cfdc; }

.minyan-row__times {
  font-family: var(--font-mono);
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.pcard--navy .minyan-row__times { color: var(--warm-white); }

.minyan-row + .minyan-row {
  border-top: 1px solid var(--border-soft);
}
.pcard--navy .minyan-row + .minyan-row {
  border-top: 1px solid rgba(255,255,255, 0.06);
}

.pcard__big {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2px;
}

.pcard__sub {
  font-size: 12px;
  color: var(--text-soft);
}

.spons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.spons-pill {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

.phone__quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.phone__quick-item {
  background: var(--parchment);
  border-radius: 14px;
  padding: 12px 4px;
  text-align: center;
  font-size: 10px;
  color: var(--navy);
  font-weight: 500;
}

.phone__quick-item .iconbox {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--paper);
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.phone__tabbar {
  position: absolute;
  bottom: 10px;
  left: 16px;
  right: 16px;
  background: rgba(255, 252, 245, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-around;
  border: 1px solid var(--border-soft);
}

.phone__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  color: var(--text-soft);
  padding: 4px;
}

.phone__tab.active {
  color: var(--navy);
}

.phone__tab.active .dot {
  background: var(--gold);
}

.phone__tab .iconbox {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.problem {
  background: var(--parchment);
  position: relative;
}

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

@media (max-width: 860px) {
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
}

.problem__visual {
  position: relative;
  height: 540px;
}

.chaos-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  font-size: 13px;
}

.chaos-card__src {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 600;
}

.chaos-card__src .tag {
  background: var(--parchment-dark);
  padding: 2px 8px;
  border-radius: 999px;
}

.chaos-card__body {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}

.chaos-card__1 { top: 6%;  left: 12%; transform: rotate(-4deg); }
.chaos-card__2 { top: 0;   right: 0;  transform: rotate(3deg); background: #def6f1; border-color: #b9e4d8; }
.chaos-card__3 { top: 38%; left: 0;   transform: rotate(2deg); background: #fff1d6; border-color: var(--gold-soft); }
.chaos-card__4 { top: 32%; right: 8%; transform: rotate(-2deg); }
.chaos-card__5 { bottom: 6%; left: 18%; transform: rotate(4deg); background: #f7e1df; border-color: #f1c4c1; }
.chaos-card__6 { bottom: 0; right: 4%; transform: rotate(-5deg); }

.problem__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .problem__list { grid-template-columns: 1fr; }
}

.problem-item {
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 18px;
}

.problem-item__n {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.problem-item__t {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.problem-item__d {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */

.solution {
  position: relative;
  overflow: hidden;
}

.solution__hub {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
  margin-top: 24px;
}

.solution__orbit {
  position: absolute;
  border: 1px dashed rgba(14, 27, 42, 0.12);
  border-radius: 50%;
}

.solution__orbit--1 { width: 560px; height: 560px; }
.solution__orbit--2 { width: 760px; height: 760px; }

.orbit-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 20px;
  width: 230px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.orbit-card .icon-box {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-tint);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}

.orbit-card__t {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.orbit-card__d {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
}

.orbit-card--1 { top: 4%; left: 14%; }
.orbit-card--2 { top: 4%; right: 14%; }
.orbit-card--3 { top: 46%; left: 0; }
.orbit-card--4 { top: 46%; right: 0; }
.orbit-card--5 { bottom: 4%; left: 50%; transform: translateX(-50%); }

@media (max-width: 860px) {
  .solution__hub { min-height: auto; flex-direction: column; gap: 24px; padding: 24px 0; }
  .solution__orbit { display: none; }
  .orbit-card { position: static; transform: none !important; width: 100%; max-width: 360px; }
  .phone--lg { width: 300px; height: 620px; }
}

/* ============================================================
   DASHBOARD SECTION (deep dive)
   ============================================================ */

.dashboard {
  background: var(--navy);
  color: #c8d1de;
  position: relative;
  overflow: hidden;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 90% 20%, rgba(200, 162, 77, 0.12), transparent 60%),
    radial-gradient(40% 60% at 10% 90%, rgba(200, 162, 77, 0.06), transparent 60%);
  pointer-events: none;
}

.dashboard h2 { color: var(--warm-white); }
.dashboard .eyebrow { color: var(--gold); }
.dashboard .eyebrow::before, .dashboard .eyebrow::after { background: var(--gold); }

.dashboard__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 860px) {
  .dashboard__grid { grid-template-columns: 1fr; gap: 48px; }
}

.dashboard__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.dash-card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(200, 162, 77, 0.16);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.dash-card__t {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.dash-card__d {
  font-size: 13px;
  color: #9aa6b7;
  line-height: 1.5;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 820px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features__grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--paper);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s ease;
  position: relative;
}

.feature:hover { background: var(--warm-white); }

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.feature__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gold-tint);
}

.feature__tag--soon {
  color: var(--text-soft);
  background: var(--parchment-dark);
}

/* ============================================================
   FUNDRAISING SECTION
   ============================================================ */

.fundraising { background: var(--parchment); }

.fundraising__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 820px) {
  .fundraising__hero { grid-template-columns: 1fr; }
}

.metric-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.metric-card__big {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.metric-card__big .pct {
  font-size: 28px;
  color: var(--gold);
  font-style: italic;
}

.metric-card__lbl {
  font-size: 13px;
  color: var(--text);
  margin-top: 6px;
}

.metrics-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sponsorship-marketplace {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 820px) { .sponsorship-marketplace { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .sponsorship-marketplace { grid-template-columns: 1fr; } }

.sm-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sm-card__tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
}

.sm-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
}

.sm-card__sub {
  font-size: 13px;
  color: var(--text-soft);
  flex: 1;
}

.sm-card__progress {
  height: 6px;
  background: var(--parchment-dark);
  border-radius: 999px;
  overflow: hidden;
}

.sm-card__progress > div {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 999px;
}

.sm-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid var(--border-soft);
}

.sm-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
}

.sm-card__action {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================================
   ADMIN SECTION
   ============================================================ */

.admin__visual {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}

@media (max-width: 820px) {
  .admin__visual { grid-template-columns: 1fr; }
}

.browser {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.browser__bar {
  background: var(--parchment);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.browser__lights {
  display: flex; gap: 6px;
}
.browser__lights span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #d0c7b3;
}
.browser__lights span:nth-child(1) { background: #f06451; }
.browser__lights span:nth-child(2) { background: #f0c14a; }
.browser__lights span:nth-child(3) { background: #5ec56f; }

.browser__url {
  flex: 1;
  background: var(--paper);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-soft);
}

.admin-app {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
}

.admin-sidebar {
  background: #FAF6EC;
  padding: 18px 14px;
  border-right: 1px solid var(--border-soft);
}

.admin-sidebar__h {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 600;
  padding-left: 8px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.admin-nav-item.active {
  background: var(--navy);
  color: var(--warm-white);
}

.admin-nav-item svg { width: 16px; height: 16px; }

.admin-main {
  padding: 24px;
}

.admin-page-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-page-h h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
}

.admin-pill {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(46, 125, 91, 0.12);
  color: var(--success);
}

.admin-composer {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.admin-composer h5 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 600;
}

.admin-composer p {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
}

.admin-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-chip {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-chip.on {
  background: var(--navy);
  color: var(--warm-white);
  border-color: var(--navy);
}

.admin-chip.gold {
  background: var(--gold-tint);
  border-color: var(--gold-soft);
  color: var(--navy);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.admin-stat {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--border-soft);
}

.admin-stat__lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.admin-stat__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
}

.admin-stat__delta {
  font-size: 11px;
  color: var(--success);
  font-weight: 500;
}

/* ============================================================
   WHITE LABEL
   ============================================================ */

.whitelabel__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
  align-items: end;
}

@media (max-width: 820px) {
  .whitelabel__row { grid-template-columns: 1fr; justify-items: center; }
}

.whitelabel__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.whitelabel__phone .phone {
  width: 240px;
  height: 480px;
  border-radius: 36px;
  padding: 8px;
}
.whitelabel__phone .phone__screen { border-radius: 30px; }
.whitelabel__phone .phone__notch { width: 80px; height: 18px; border-radius: 0 0 12px 12px; }

.whitelabel__label {
  text-align: center;
}
.whitelabel__label-t {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}
.whitelabel__label-d {
  font-size: 13px;
  color: var(--text-soft);
}
.whitelabel__label-tag {
  margin-top: 8px;
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: rgba(200, 162, 77, 0.06);
}

/* ============================================================
   WHITE-LABEL PHONE VARIANTS — three distinct shul personalities
   ============================================================ */

/* ---------- 1) Beth Shalom · Modern Orthodox ----------
   Steel blue + warm white, photo-led, generous whitespace,
   contemporary cards with subtle gold accent. */

.phone--modern { background: #2a3f5f; }
.phone--modern .phone__notch { background: #2a3f5f; }
.phone--modern .phone__screen { background: #f7f4ee; }
.phone--modern .phone__statusbar { color: #fff; }

.pm-mo {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 56px;
}
.pm-mo::-webkit-scrollbar { display: none; }

.pm-mo__hero {
  position: relative;
  margin-top: -34px;
  padding-top: 38px;
  height: 168px;
  background:
    radial-gradient(80% 100% at 50% 0%, #4a6896 0%, #2a3f5f 70%),
    #2a3f5f;
  overflow: hidden;
}
.pm-mo__hero::before {
  /* abstract architectural arch silhouette */
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 110px;
  background:
    radial-gradient(40% 90% at 25% 100%, rgba(255,255,255,0.06) 0 60%, transparent 62%),
    radial-gradient(40% 95% at 50% 100%, rgba(255,255,255,0.10) 0 65%, transparent 67%),
    radial-gradient(40% 90% at 75% 100%, rgba(255,255,255,0.06) 0 60%, transparent 62%);
}
.pm-mo__hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15,25,45,0.55) 100%);
}
.pm-mo__hero-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
  z-index: 2;
}
.pm-mo__hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e9c769;
  font-weight: 600;
  margin-bottom: 4px;
}
.pm-mo__hero-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.pm-mo__hero-sub {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 2px;
}

.pm-mo__quick {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: -28px 14px 14px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 4px;
  box-shadow: 0 8px 24px rgba(30, 45, 70, 0.12);
  position: relative;
  z-index: 3;
}
.pm-mo__quick-i {
  text-align: center;
  padding: 0 4px;
  border-right: 1px solid #ede8dd;
}
.pm-mo__quick-i:last-child { border-right: none; }
.pm-mo__quick-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #2a3f5f;
  letter-spacing: -0.01em;
}
.pm-mo__quick-l {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8c95a4;
  margin-top: 2px;
}

.pm-mo__card {
  margin: 0 14px 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px 11px;
  border-left: 3px solid #c69b3a;
}
.pm-mo__card-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c69b3a;
  font-weight: 600;
  margin-bottom: 4px;
}
.pm-mo__card-t {
  font-family: var(--font-display);
  font-size: 14px;
  color: #2a3f5f;
  font-weight: 600;
  line-height: 1.15;
}
.pm-mo__card-d {
  font-size: 11px;
  color: #5c6678;
  margin-top: 2px;
}
.pm-mo__card-cta {
  font-size: 10px;
  color: #2a3f5f;
  font-weight: 600;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #ede8dd;
}

.pm-mo__list {
  margin: 0 14px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
}
.pm-mo__list-h {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c95a4;
  font-weight: 600;
  margin-bottom: 6px;
}
.pm-mo__list-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  font-size: 11px;
}
.pm-mo__list-row + .pm-mo__list-row { border-top: 1px solid #f3eee2; }
.pm-mo__list-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2a3f5f;
}
.pm-mo__list-dot--gold { background: #c69b3a; }
.pm-mo__list-t { color: #2a3f5f; font-weight: 500; }
.pm-mo__list-time {
  font-family: var(--font-mono);
  color: #5c6678;
  font-size: 10px;
}

.pm-mo__tabs {
  position: absolute;
  bottom: 10px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 6px 18px rgba(30, 45, 70, 0.10);
}
.pm-mo__tab {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: #b9bfca;
}
.pm-mo__tab.active { color: #2a3f5f; }

/* ---------- 2) Chabad of Westside ----------
   770-blue + gold, Hayom Yom forward, bilingual, bold + warm. */

.phone--chabad { background: #0a1849; }
.phone--chabad .phone__notch { background: #0a1849; }
.phone--chabad .phone__screen { background: #fbf5e2; }
.phone--chabad .phone__statusbar { color: #f5e8c0; }

.pm-ch {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}
.pm-ch::-webkit-scrollbar { display: none; }

.pm-ch__top {
  background:
    radial-gradient(60% 80% at 50% 0%, #1f3a96 0%, #0a1849 70%);
  color: #fbf5e2;
  padding: 8px 16px 18px;
  text-align: center;
  border-bottom: 3px solid #c89a35;
  position: relative;
}
.pm-ch__top::after {
  /* gold underline pattern */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 5px;
  background:
    linear-gradient(90deg, #c89a35, #c89a35) center/100% 1px no-repeat,
    repeating-linear-gradient(90deg, #c89a35 0 4px, transparent 4px 8px) center/100% 5px no-repeat;
  opacity: 0;
}
.pm-ch__crown {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.pm-ch__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fbf5e2;
}
.pm-ch__date {
  font-size: 10px;
  color: #d9bf6e;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.pm-ch__date [lang="he"] {
  font-family: var(--font-display);
  font-size: 12px;
  margin-right: 2px;
}

.pm-ch__hayom {
  margin: 14px 12px 12px;
  background:
    linear-gradient(180deg, #fff9e8 0%, #f7ecc3 100%);
  border: 1px solid #e3cd83;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  position: relative;
}
.pm-ch__hayom::before, .pm-ch__hayom::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 18px; height: 1px;
  background: #c89a35;
}
.pm-ch__hayom::before { left: 12px; }
.pm-ch__hayom::after  { right: 12px; }
.pm-ch__hayom-h {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a6a1f;
  font-weight: 700;
  margin-bottom: 6px;
}
.pm-ch__hayom-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #0a1849;
  direction: rtl;
  line-height: 1.2;
  margin-bottom: 4px;
}
.pm-ch__hayom-trans {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10.5px;
  color: #5a4818;
  line-height: 1.3;
}

.pm-ch__minyan {
  margin: 0 12px 12px;
  background: #fff;
  border: 1px solid #ecdfb0;
  border-radius: 12px;
  padding: 10px 14px;
}
.pm-ch__minyan-h {
  font-family: var(--font-display);
  font-size: 11px;
  color: #c89a35;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pm-ch__minyan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  padding: 4px 0;
  color: #0a1849;
  white-space: nowrap;
}
.pm-ch__minyan-row > span:first-child { flex-shrink: 0; }
.pm-ch__minyan-row + .pm-ch__minyan-row { border-top: 1px solid #f4ead0; }
.pm-ch__minyan-row b {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #0a1849;
  font-weight: 700;
  white-space: nowrap;
}

.pm-ch__mitzvah {
  margin: 0 12px;
  background: #0a1849;
  color: #fbf5e2;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.pm-ch__mitzvah::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 100% 0%, rgba(200, 154, 53, 0.32), transparent 70%);
  pointer-events: none;
}
.pm-ch__mitzvah-l { position: relative; z-index: 1; }
.pm-ch__mitzvah-t {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: #e9c769;
}
.pm-ch__mitzvah-d {
  font-size: 10px;
  color: #c8d1e6;
  margin-top: 2px;
  line-height: 1.3;
}
.pm-ch__mitzvah-cta {
  position: relative;
  z-index: 1;
  background: #c89a35;
  color: #0a1849;
  font-size: 9.5px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* ---------- 3) Khal Adas Yereim · Heimish (Lakewood) ----------
   Cream parchment + black serif, Hebrew-first luach feel,
   no photos, no gradients, dense traditional layout. */

.phone--heimish { background: #15140f; }
.phone--heimish .phone__notch { background: #15140f; }
.phone--heimish .phone__screen { background: #f1e8cf; }
.phone--heimish .phone__statusbar { color: #15140f; }

.pm-he {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 4px 18px 24px;
  color: #15140f;
  position: relative;
}
.pm-he::-webkit-scrollbar { display: none; }

.pm-he__masthead {
  text-align: center;
  padding: 10px 0 12px;
}
.pm-he__rule {
  height: 0;
  border-top: 1px solid #15140f;
  border-bottom: 1px solid #15140f;
  padding-top: 2px;
  margin: 6px 0;
}
.pm-he__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: #15140f;
  letter-spacing: 0;
  line-height: 1.1;
}
.pm-he__name-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  color: #5a4f33;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.pm-he__date {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 11px;
  color: #15140f;
  padding: 4px 0 10px;
  border-bottom: 1px solid #15140f;
  margin-bottom: 10px;
}
.pm-he__date [lang="he"] {
  font-size: 13px;
  font-weight: 500;
}

.pm-he__sec {
  margin-bottom: 14px;
}
.pm-he__sec-h {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #15140f;
  text-align: center;
  margin-bottom: 6px;
  position: relative;
}
.pm-he__sec-h::before, .pm-he__sec-h::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: #15140f;
}
.pm-he__sec-h::before { left: 4px; }
.pm-he__sec-h::after  { right: 4px; }

.pm-he__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  padding: 3px 0;
  border-bottom: 1px dotted rgba(21, 20, 15, 0.35);
  white-space: nowrap;
}
.pm-he__row:last-child { border-bottom: none; }
.pm-he__row [lang="he"] {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.pm-he__row span:last-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: -0.01em;
}

.pm-he__sec--yahr {
  background: rgba(21, 20, 15, 0.04);
  border: 1px solid rgba(21, 20, 15, 0.18);
  padding: 8px 12px;
}
.pm-he__yahr {
  font-family: var(--font-display);
  font-size: 12px;
  color: #15140f;
  text-align: center;
  padding: 3px 0;
  font-style: italic;
}
.pm-he__yahr + .pm-he__yahr { border-top: 1px dotted rgba(21, 20, 15, 0.3); }

.pm-he__seal {
  position: absolute;
  top: 32px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 11px;
  color: #15140f;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ============================================================
   LIVE SAMPLE — "in the wild" KNB case study
   ============================================================ */

.livesample {
  background:
    radial-gradient(60% 70% at 100% 0%, rgba(200, 162, 77, 0.10), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(14, 27, 42, 0.04), transparent 60%),
    var(--warm-white);
  position: relative;
  overflow: hidden;
}

.livesample__head { max-width: 760px; }

.livesample__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2e7d5b;
  position: relative;
  display: inline-block;
  margin-right: 2px;
}
.livesample__pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #2e7d5b;
  opacity: 0.3;
  animation: ls-pulse 2.2s ease-out infinite;
}
@keyframes ls-pulse {
  0%   { transform: scale(0.6); opacity: 0.45; }
  100% { transform: scale(1.8); opacity: 0; }
}

.livesample__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .livesample__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---- Phone wrap ---- */
.livesample__phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.livesample__phone-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 162, 77, 0.16), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.livesample__phone-wrap .phone { z-index: 1; }

.livesample__phone-cap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.livesample__phone-cap-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---- App Store-style card ---- */
.ls-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  color: inherit;
  text-decoration: none;
}
.ls-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}

.ls-card__hd {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}

.ls-card__icon {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, #2a3f5f 0%, #14213a 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(14, 27, 42, 0.18);
  overflow: hidden;
}
.ls-card__icon-gleam {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%),
    radial-gradient(80% 80% at 30% 20%, rgba(200, 162, 77, 0.25), transparent 60%);
  pointer-events: none;
}

.ls-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.ls-card__dev {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 2px;
}
.ls-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.ls-stars {
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

/* Stat strip */
.ls-card__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.ls-stat {
  text-align: center;
  border-right: 1px solid var(--border-soft);
}
.ls-stat:last-child { border-right: none; }
.ls-stat__n {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ls-stat__n small {
  font-size: 11px;
  color: var(--gold);
  margin-left: 2px;
  font-weight: 600;
}
.ls-stat__l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 2px;
}

/* Features */
.ls-card__feats {
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--border-soft);
}
.ls-card__feats-h {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.ls-card__feats ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
}
.ls-card__feats li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  line-height: 1.45;
}
.ls-card__feats li b {
  color: var(--navy);
  font-weight: 600;
}
.ls-card__feat-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

/* Review quote */
.ls-card__quote {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.ls-card__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.5;
  margin: 6px 0 8px;
}
.ls-card__quote-by {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* App Store badge */
.ls-appstore {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--warm-white);
  border-radius: 14px;
  padding: 12px 18px;
  transition: background .2s ease;
}
.ls-card:hover .ls-appstore { background: #060f1c; }
.ls-appstore__glyph { display: flex; align-items: center; }
.ls-appstore__txt { flex: 1; line-height: 1.05; }
.ls-appstore__lead {
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.ls-appstore__name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 1px;
}
.ls-appstore__arrow {
  font-size: 18px;
  opacity: 0.7;
  transition: transform .2s ease, opacity .2s ease;
}
.ls-card:hover .ls-appstore__arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* Foot CTA */
.livesample__foot {
  margin-top: 56px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.livesample__foot-l { display: flex; flex-direction: column; gap: 4px; }
.livesample__foot-lead {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}
.livesample__foot-d {
  font-size: 14px;
  color: var(--text);
}

/* ============================================================
   KNB phone variant (the in-the-wild preview)
   ============================================================ */

.phone--knb { background: #1c1a17; }
.phone--knb .phone__notch { background: #1c1a17; }
.phone--knb .phone__screen { background: #f7f4ef; }

.pknb {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 4px 14px 24px;
}
.pknb::-webkit-scrollbar { display: none; }

.pknb__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 14px;
}
.pknb__brand { display: flex; align-items: center; gap: 10px; }
.pknb__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: radial-gradient(120% 100% at 0% 0%, #2a3f5f 0%, #14213a 100%);
  color: #d4a84c;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(20, 33, 58, 0.25);
}
.pknb__name {
  font-family: var(--font-display);
  font-size: 14px;
  color: #1c1a17;
  font-weight: 600;
  line-height: 1.1;
}
.pknb__sub {
  font-size: 10px;
  color: #7a7368;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}
.pknb__bell {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #1c1a17;
  border: 1px solid #eae3d2;
}
.pknb__bell-dot {
  position: absolute;
  top: -4px; right: -4px;
  background: #a8302c;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #f7f4ef;
}

.pknb__hero {
  background: linear-gradient(135deg, #14213a 0%, #2a3f5f 100%);
  color: #f7f4ef;
  border-radius: 14px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.pknb__hero::after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 76, 0.35), transparent 70%);
  pointer-events: none;
}
.pknb__hero-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4a84c;
  margin-bottom: 4px;
}
.pknb__hero-t {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.pknb__hero-d {
  font-size: 10.5px;
  color: #c8d1e6;
  line-height: 1.4;
  margin-bottom: 8px;
}
.pknb__hero-meta {
  font-size: 9px;
  color: #d4a84c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  gap: 6px;
}

.pknb__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.pknb__tile {
  background: #fff;
  border: 1px solid #eae3d2;
  border-radius: 12px;
  padding: 10px 12px;
}
.pknb__tile-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #f3ead4;
  color: #14213a;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.pknb__tile-t {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: #1c1a17;
  line-height: 1.1;
}
.pknb__tile-d {
  font-size: 9.5px;
  color: #7a7368;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.pknb__contacts {
  background: #fff;
  border: 1px solid #eae3d2;
  border-radius: 12px;
  padding: 10px 12px;
}
.pknb__contacts-h {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a8302c;
  font-weight: 700;
  margin-bottom: 8px;
}
.pknb__contact-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
}
.pknb__contact-row + .pknb__contact-row { border-top: 1px solid #f3ead4; }
.pknb__contact-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14213a, #2a3f5f);
  color: #d4a84c;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
}
.pknb__contact-av--alt {
  background: linear-gradient(135deg, #4a2422, #7a3a36);
  color: #f3ead4;
}
.pknb__contact-n {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: #1c1a17;
  line-height: 1.1;
}
.pknb__contact-r {
  font-size: 9.5px;
  color: #7a7368;
  margin-top: 1px;
}
.pknb__contact-cta {
  background: #1c1a17;
  color: #f7f4ef;
  font-size: 9.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ============================================================
   END LIVE SAMPLE
   ============================================================ */

/* ============================================================
   USE CASES
   ============================================================ */

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

@media (max-width: 820px) { .usecases__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .usecases__grid { grid-template-columns: 1fr; } }

.uc-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s ease;
}

.uc-card:hover {
  background: var(--paper);
  border-color: var(--gold-soft);
}

.uc-card__time {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 600;
}

.uc-card__t {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

.uc-card__d {
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.howitworks { background: var(--navy); color: #c8d1de; position: relative; overflow: hidden; }
.howitworks h2 { color: var(--warm-white); }
.howitworks .eyebrow { color: var(--gold); }
.howitworks .eyebrow::before, .howitworks .eyebrow::after { background: var(--gold); }
.howitworks .section-head p { color: #9aa6b7; }

.howitworks__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 820px) { .howitworks__steps { grid-template-columns: 1fr; } }

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

.step__n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 42px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}

.step__t {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--warm-white);
  font-weight: 600;
  margin-bottom: 8px;
}

.step__d {
  font-size: 14px;
  color: #9aa6b7;
  line-height: 1.55;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing__row--two {
  grid-template-columns: 1fr 1fr;
  max-width: 880px;
  margin: 0 auto;
  gap: 28px;
}

@media (max-width: 820px) { .pricing__row, .pricing__row--two { grid-template-columns: 1fr; } }

.plan {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.plan--featured {
  background: var(--navy);
  color: #c8d1de;
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 820px) {
  .plan--featured { transform: none; }
}

.plan__tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
}

.plan--featured .plan__name { color: var(--warm-white); }

.plan__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  min-height: 60px;
}

.plan--featured .plan__desc { color: #9aa6b7; }

.plan__price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
  padding: 16px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.plan--featured .plan__price {
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.1);
}

.plan__price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  display: block;
  margin-top: 2px;
}

.plan--featured .plan__price small { color: #9aa6b7; }

.plan__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.plan__feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan__feats li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1B2A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.plan--featured .plan__feats li::before {
  background-color: rgba(200, 162, 77, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A24D' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ============================================================
   FAQ
   ============================================================ */

.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.faq__item[open] {
  border-color: var(--gold-soft);
  background: var(--paper);
}

.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

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

.faq__item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

/* ============================================================
   DEMO CTA
   ============================================================ */

.democta {
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(200, 162, 77, 0.20), transparent 60%),
    radial-gradient(50% 80% at 10% 90%, rgba(200, 162, 77, 0.08), transparent 60%),
    var(--navy);
  color: #c8d1de;
  position: relative;
  overflow: hidden;
}

.democta h2 { color: var(--warm-white); }
.democta .eyebrow { color: var(--gold); }
.democta .eyebrow::before, .democta .eyebrow::after { background: var(--gold); }

.democta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.democta__sub {
  font-size: 20px;
  line-height: 1.55;
  color: #c4cdd9;
  margin: 20px auto 36px;
}

.democta__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.democta__trust {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9aa6b7;
}

.democta__trust span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */

.credibility {
  padding: 56px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--parchment);
}

.credibility__head {
  text-align: center;
  margin-bottom: 32px;
}

.credibility__head p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

@media (max-width: 820px) { .credibility__row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .credibility__row { grid-template-columns: 1fr; } }

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.cred-item:first-child { border-left: none; padding-left: 8px; }

@media (max-width: 540px) { .cred-item { border-left: none; border-top: 1px solid var(--border); padding: 16px 0 0; } }

.cred-item__t {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  font-weight: 600;
}

.cred-item__d {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy);
  color: #8a96a8;
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr 0.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

.footer .logo { color: var(--warm-white); }

.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  color: #9aa6b7;
}

.footer__by {
  margin-top: 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__by-lead {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6b7685;
  font-weight: 500;
}

.footer__by-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
}

.footer__by-brand:hover { color: var(--gold-bright); }

.footer__col-h {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer__col a:hover { color: var(--warm-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom .hebrew {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

/* ============================================================
   IMAGE SLOT styling overrides — make them feel premium
   ============================================================ */

image-slot {
  border-radius: var(--radius);
  background: var(--parchment-dark);
}

/* ============================================================
   FOUNDERS
   ============================================================ */

.founders {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.founders::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(200, 162, 77, 0.08), transparent 60%);
  pointer-events: none;
}

.founders__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

@media (max-width: 820px) {
  .founders__row { grid-template-columns: 1fr; }
}

.founder-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.founder-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--parchment-dark);
}

.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(15%) contrast(1.02);
  transition: filter .3s ease, transform .5s ease;
}

.founder-card__photo .founder-card__image--shmuel {
  object-position: center 34%;
}

.founder-card__photo .founder-card__image--eitan {
  object-position: center center;
}

.founder-card:hover .founder-card__photo img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.02);
}

.founder-card__photo-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  pointer-events: none;
}

.founder-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.founder-card__role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.founder-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text);
  margin-top: 4px;
}

.founder-card__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.founders__signature {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.founders__signature-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.founders__signature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.founders__signature-lead {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  font-weight: 500;
}

.founders__signature-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .2s ease;
}

.founders__signature-brand:hover {
  color: var(--gold);
}

.founders__signature-arrow {
  font-style: normal;
  color: var(--gold);
  transition: transform .2s ease;
}

.founders__signature-brand:hover .founders__signature-arrow {
  transform: translateX(4px);
}

.founders__signature-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section,
  .hero,
  .solution,
  .dashboard,
  .fundraising,
  .admin,
  .whitelabel,
  .livesample,
  .founders {
    overflow-x: hidden;
  }

  .hero__device,
  .problem__visual,
  .solution__hub,
  .dashboard__visual,
  .fundraising__visual,
  .admin__visual,
  .whitelabel__phone,
  .livesample__phone-wrap {
    max-width: 100%;
  }

  .hero__float-card--1 {
    left: 0;
  }

  .hero__float-card--2 {
    right: 0;
  }

  .phone,
  .phone--lg {
    max-width: calc(100vw - 56px);
  }

  .livesample__phone-halo {
    width: min(420px, 100vw);
    height: min(420px, 100vw);
  }

  .ls-card,
  .livesample__foot,
  .founder-card {
    max-width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   FADE-IN ANIMATION (disabled — content visible by default)
   ============================================================ */

.fade-up { opacity: 1; }
.fade-up.in { opacity: 1; }

/* ============================================================
   UTILS
   ============================================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
