:root {
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0b1728;
  --navy-800: #0f1d30;
  --navy-700: #172a43;
  --gold: #d8a94f;
  --gold-light: #f0ce82;
  --gold-deep: #aa7726;
  --paper: #f7f6f2;
  --white: #fff;
  --ink: #101828;
  --muted: #657084;
  --line: #dfe3e8;
  --soft: #eef1f4;
  --green: #42d392;
  --shadow: 0 24px 70px rgba(4, 12, 24, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
svg { display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-200%);
  padding: .7rem 1rem;
  border-radius: .5rem;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
}
.skip-link:focus { transform: none; }
.p-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* Header */
.p-head {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 78px;
  color: rgba(255,255,255,.86);
  background: rgba(5,11,20,.82);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.p-head-inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.p-brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.p-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  border: 1px solid rgba(216,169,79,.42);
  border-radius: 50%;
  background: rgba(216,169,79,.08);
}
.p-mark svg { width: 31px; height: 31px; }
.p-brand-copy { display: grid; line-height: 1.15; }
.p-brand-copy strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.p-brand-copy small { margin-top: .3rem; color: rgba(255,255,255,.45); font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.p-nav { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; }
.p-nav a {
  position: relative;
  color: rgba(255,255,255,.64);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.p-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -.55rem;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform .2s ease;
}
.p-nav a:hover { color: var(--white); }
.p-nav a:hover::after { transform: scaleX(1); }
.p-login {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1rem;
  border: 1px solid rgba(216,169,79,.55);
  border-radius: .35rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.p-login svg { width: 16px; }
.p-login:hover { background: var(--gold); color: var(--navy-950); }

/* Hero */
.p-hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    radial-gradient(circle at 78% 30%, #172f50 0, var(--navy-900) 42%, var(--navy-950) 78%);
  background-size: 72px 72px, 72px 72px, auto;
}
.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,11,20,.7), transparent 60%);
  pointer-events: none;
}
.p-hero-glow {
  position: absolute;
  top: -160px;
  left: 58%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(216,169,79,.14);
  filter: blur(120px);
}
.p-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 4.5rem;
  align-items: center;
  min-height: 610px;
  padding-bottom: 72px;
}
.p-kicker {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.p-kicker span { width: 24px; height: 1px; background: currentColor; }
.p-kicker-dark { color: var(--gold-deep); }
.p-hero h1 {
  max-width: 580px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 5.6vw, 5.35rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}
.p-hero h1 em { color: var(--gold-light); font-weight: 400; }
.p-lead {
  max-width: 560px;
  margin: 1.8rem 0 2rem;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
  line-height: 1.75;
}
.p-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 50px;
  padding: .78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: .35rem;
  font-size: .83rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.p-btn svg { width: 18px; }
.p-btn:hover { transform: translateY(-2px); }
.p-btn-primary { background: var(--gold); color: var(--navy-950); }
.p-btn-primary:hover { background: var(--gold-light); }
.p-btn-secondary { border-color: rgba(255,255,255,.24); color: rgba(255,255,255,.86); background: rgba(255,255,255,.03); }
.p-btn-secondary:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); }
.p-hero-notes { display: flex; flex-wrap: wrap; gap: 1.15rem; margin-top: 1.5rem; color: rgba(255,255,255,.48); font-size: .72rem; }
.p-hero-notes span { display: flex; align-items: center; gap: .35rem; }
.p-hero-notes i { display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: rgba(66,211,146,.13); color: var(--green); font-style: normal; font-size: .62rem; }

/* Studio mockup */
.p-studio-wrap { position: relative; perspective: 1200px; }
.p-studio-light {
  position: absolute;
  inset: 10% 5% -10%;
  border-radius: 50%;
  background: rgba(50,118,189,.24);
  filter: blur(60px);
}
.p-studio {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: #0b131f;
  box-shadow: 0 34px 100px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.025);
  transform: rotateY(-4deg) rotateX(1deg);
}
.studio-top, .studio-foot { display: flex; align-items: center; justify-content: space-between; }
.studio-top { height: 45px; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.08); color: #a8b0bd; font-size: .52rem; letter-spacing: .13em; }
.studio-brand { display: flex; align-items: center; gap: .5rem; }
.studio-brand b { display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid var(--gold); border-radius: 4px; color: var(--gold); }
.studio-status { display: flex; align-items: center; gap: .4rem; }
.studio-status i, .studio-foot i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.studio-body { padding: 14px; }
.studio-monitors { display: grid; grid-template-columns: 1fr 25px 1fr; gap: 7px; align-items: center; }
.studio-monitor { overflow: hidden; border: 1px solid #26364b; border-radius: 6px; background: #03070d; }
.program-monitor { border-color: #9d3b3b; }
.monitor-label { display: flex; align-items: center; gap: .35rem; height: 24px; padding: 0 8px; color: #aab5c4; font-size: .49rem; font-weight: 800; letter-spacing: .09em; }
.monitor-label i { width: 5px; height: 5px; border-radius: 50%; background: #ff4f58; box-shadow: 0 0 7px #ff4f58; }
.church-scene { position: relative; overflow: hidden; height: 145px; background: linear-gradient(#172235 0 64%, #1d2732 64%); }
.church-scene::after { content: ""; position: absolute; inset: auto 0 0; height: 36%; background: linear-gradient(150deg, #242d36, #0d141d); clip-path: polygon(0 40%,100% 0,100% 100%,0 100%); }
.window { position: absolute; top: 18%; width: 12%; height: 42%; border-radius: 50% 50% 2px 2px; background: linear-gradient(160deg,#d3a64e,#533a2f); box-shadow: 0 0 18px rgba(216,169,79,.28); }
.w-one { left: 16%; }.w-two { left: 44%; }.w-three { right: 16%; }
.pulpit { position: absolute; z-index: 2; right: 26%; bottom: 5%; width: 17%; height: 34%; background: linear-gradient(90deg,#8b5926,#b57b36); clip-path: polygon(12% 0,88% 0,100% 100%,0 100%); }
.lower-third { position: absolute; z-index: 4; left: 8px; bottom: 8px; display: grid; padding: 5px 9px; border-left: 2px solid var(--gold); background: rgba(3,8,15,.88); line-height: 1.25; }
.lower-third b { color: var(--gold-light); font-size: .39rem; text-transform: uppercase; letter-spacing: .08em; }
.lower-third em { color: #fff; font-size: .52rem; font-style: normal; }
.live-logo { position: absolute; z-index: 4; right: 7px; bottom: 7px; display: grid; place-items: center; width: 26px; height: 19px; border: 1px solid rgba(216,169,79,.65); border-radius: 3px; background: rgba(4,10,18,.78); color: var(--gold-light); font: 600 .45rem Georgia,serif; }
.studio-monitor small { display: block; padding: 5px 7px; color: #6f7c8e; font-size: .42rem; }
.studio-take { color: #e34d52; text-align: center; font-size: 1.2rem; }
.studio-sources { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: 9px; }
.source { position: relative; height: 46px; padding: 7px; border: 1px solid #273447; border-radius: 4px; background: #111b29; color: #8591a2; font-size: .43rem; }
.source.active { border-color: #b23e42; box-shadow: inset 0 0 0 1px #b23e42; }
.source span { display: block; width: 13px; height: 13px; margin-bottom: 3px; border-radius: 3px; background: #233146; color: #cbd3de; text-align: center; line-height: 13px; }
.source i { position: absolute; right: 6px; bottom: 7px; width: 4px; height: 14px; border-radius: 2px; background: linear-gradient(to top,var(--green) 70%,#243248 70%); }
.studio-foot { height: 42px; padding: 0 14px; border-top: 1px solid rgba(255,255,255,.08); color: #7e8998; font-size: .48rem; }
.studio-foot span { display: flex; align-items: center; gap: .4rem; }
.studio-foot button { padding: 5px 18px; border: 0; border-radius: 3px; background: #b5363d; color: #fff; font-size: .48rem; font-weight: 800; }
.p-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem .9rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(11,23,40,.92);
  box-shadow: 0 15px 35px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.p-floating-card span:last-child { display: grid; }
.p-floating-card strong { color: #fff; font-size: .65rem; }
.p-floating-card small { margin-top: .1rem; color: #7d8999; font-size: .52rem; }
.card-qr { left: -34px; bottom: 48px; }
.mini-qr { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 4px; background: #fff; color: #111; font-size: 1.35rem; }
.card-live { right: -28px; top: 58px; }
.live-dot { width: 23px; height: 23px; border: 1px solid rgba(66,211,146,.35); border-radius: 50%; background: rgba(66,211,146,.1); box-shadow: inset 0 0 0 7px transparent; position: relative; }
.live-dot::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.p-trust-row { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: 76px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); }
.p-trust-row p { margin: 0; font: italic 1rem Georgia,serif; }
.p-trust-row div { display: flex; align-items: center; gap: 1.2rem; }
.p-trust-row span { font-size: .62rem; font-weight: 800; letter-spacing: .16em; }
.p-trust-row i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

/* Sections */
.p-section { padding: 110px 0; }
.p-intro { background: var(--paper); }
.p-section-head { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.p-section-head h2, .p-security h2, .p-contact h2, .p-roadmap h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem,4vw,3.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.p-section-head > p { margin: 0; color: var(--muted); font-size: .97rem; }
.p-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.p-feature {
  position: relative;
  min-height: 285px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.p-feature:hover { transform: translateY(-4px); border-color: #c6cdd6; box-shadow: 0 20px 50px rgba(9,24,43,.08); }
.p-feature-large { grid-row: span 2; min-height: 584px; background: var(--navy-850); color: #fff; border-color: var(--navy-850); }
.p-feature-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 240px; align-items: center; gap: 2rem; }
.feature-number { position: absolute; top: 1.2rem; right: 1.35rem; color: #a7afb9; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.p-feature-large .feature-number { color: rgba(255,255,255,.3); }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1.4rem; border-radius: 7px; color: var(--gold-deep); background: #f7f0e2; }
.feature-icon svg { width: 23px; height: 23px; }
.p-feature-large .feature-icon { color: var(--gold-light); background: rgba(216,169,79,.12); }
.p-feature h3 { margin: 0 0 .7rem; font: 400 1.4rem/1.2 Georgia,serif; }
.p-feature p { margin: 0; color: var(--muted); font-size: .9rem; }
.p-feature-large p { color: rgba(255,255,255,.57); }
.camera-visual { position: absolute; inset: auto 1.5rem 1.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }
.camera-visual span { position: relative; height: 94px; padding: 9px; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 5px; background: linear-gradient(150deg,#233753,#0b1320); color: #8f9bad; font-size: .46rem; letter-spacing: .08em; }
.camera-visual span::after { content: ""; position: absolute; width: 28px; height: 45px; left: 50%; bottom: -13px; transform: translateX(-50%); border-radius: 50% 50% 0 0; background: #344154; }
.camera-visual i { position: absolute; top: 6px; right: 6px; display: grid; place-items: center; width: 15px; height: 15px; border-radius: 3px; background: rgba(255,255,255,.08); color: #d6dce4; font-style: normal; }
.mini-site { position: relative; overflow: hidden; min-height: 160px; padding: 55px 20px 16px; border: 1px solid #d8dde4; border-radius: 6px; background: linear-gradient(160deg,#13223a,#08111e); color: white; box-shadow: 0 15px 30px rgba(8,18,32,.15); }
.mini-site > i:first-child { position: absolute; top: 12px; left: 14px; width: 18px; height: 18px; border: 1px solid var(--gold); border-radius: 50%; }
.mini-site > i:nth-child(2) { position: absolute; inset: 0; background: radial-gradient(circle at 70% 40%,rgba(216,169,79,.18),transparent 42%); }
.mini-site strong,.mini-site span { position: relative; z-index: 1; display: block; }
.mini-site strong { font: 400 1.05rem Georgia,serif; }
.mini-site span { margin-top: .25rem; color: rgba(255,255,255,.5); font-size: .58rem; }
.mini-site button { position: relative; z-index: 1; margin-top: 1rem; padding: 5px 8px; border: 0; border-radius: 2px; background: var(--gold); color: #111; font-size: .48rem; }

/* Process */
.p-process { color: white; background: var(--navy-900); }
.p-section-head-light > p { color: rgba(255,255,255,.5); }
.p-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.p-steps li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 1.2rem; padding-right: 3rem; }
.step-index { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(216,169,79,.42); border-radius: 50%; color: var(--gold-light); font: 400 .8rem Georgia,serif; }
.step-line { position: absolute; top: 23px; left: 46px; width: calc(100% - 46px); height: 1px; background: linear-gradient(90deg,rgba(216,169,79,.35),rgba(255,255,255,.08)); }
.p-steps div:last-child { position: relative; z-index: 2; background: var(--navy-900); }
.p-steps h3 { margin: .1rem 0 .6rem; font: 400 1.25rem Georgia,serif; }
.p-steps p { margin: 0; color: rgba(255,255,255,.5); font-size: .87rem; }
.p-requirements { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: center; margin-top: 5rem; padding: 2rem; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.035); }
.requirements-title span { color: var(--gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.requirements-title h3 { margin: .5rem 0 0; font: 400 1.5rem Georgia,serif; }
.p-requirements ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem 2rem; margin: 0; padding: 0; list-style: none; }
.p-requirements li { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.45); font-size: .72rem; }
.p-requirements li i { display: grid; place-items: center; flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; background: rgba(66,211,146,.1); color: var(--green); font-style: normal; font-size: .68rem; }
.p-requirements li span { display: grid; }
.p-requirements li strong { color: rgba(255,255,255,.9); font-size: .78rem; }

/* Security */
.p-security { background: #eceff2; }
.p-security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: center; }
.security-lead { max-width: 480px; margin: 1.5rem 0 1.8rem; color: var(--muted); font-size: 1rem; }
.p-text-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-deep); font-size: .82rem; font-weight: 800; text-decoration: none; }
.p-text-link span { transition: transform .2s ease; }
.p-text-link:hover span { transform: translateX(4px); }
.security-cards { display: grid; gap: 1px; background: #d4dae1; border: 1px solid #d4dae1; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 50px rgba(11,24,42,.08); }
.security-cards article { display: grid; grid-template-columns: 46px 1fr; gap: 1.2rem; padding: 1.55rem 1.7rem; background: #fff; }
.security-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: #f4eee2; color: var(--gold-deep); font: .7rem Georgia,serif; }
.security-cards h3 { margin: 0 0 .35rem; font: 400 1.12rem Georgia,serif; }
.security-cards p { margin: 0; color: var(--muted); font-size: .84rem; }

/* Roadmap and CTA */
.p-roadmap { padding: 35px 0; color: white; background: var(--gold-deep); }
.p-roadmap-inner { display: grid; grid-template-columns: 160px 1fr; gap: 2.5rem; align-items: center; }
.roadmap-label { justify-self: start; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.4); border-radius: 3px; font-size: .58rem; font-weight: 900; letter-spacing: .14em; }
.p-roadmap h2 { font-size: clamp(1.45rem,2.5vw,2rem); }
.p-roadmap p { max-width: 760px; margin: .5rem 0 0; color: rgba(255,255,255,.76); font-size: .84rem; }
.p-contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: white;
  text-align: center;
  background: radial-gradient(circle at 50% 0, #1b3455, var(--navy-900) 58%, var(--navy-950));
}
.p-contact-pattern { position: absolute; inset: 0; opacity: .13; background: repeating-radial-gradient(circle at 50% 130%,transparent 0 56px,rgba(216,169,79,.5) 57px 58px); }
.p-contact-inner { position: relative; z-index: 2; display: grid; justify-items: center; }
.p-contact h2 { max-width: 750px; }
.p-contact > .p-shell > p:not(.p-kicker) { max-width: 650px; margin: 1.3rem auto 1.8rem; color: rgba(255,255,255,.58); }

/* Footer */
.p-foot { color: rgba(255,255,255,.55); background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.08); }
.p-foot-main { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
.p-brand-footer .p-mark { width: 38px; height: 38px; }
.p-foot-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.5rem; }
.p-foot-links a { font-size: .76rem; text-decoration: none; }
.p-foot-links a:hover { color: var(--gold-light); }
.p-foot-legal { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; padding-bottom: 1.4rem; border-top: 1px solid rgba(255,255,255,.07); }
.p-foot-legal p { margin: 0; font-size: .66rem; }

/* Responsive */
@media (max-width: 1050px) {
  .p-nav { display: none; }
  .p-login { margin-left: auto; }
  .p-hero-grid { grid-template-columns: 1fr; gap: 4rem; padding-bottom: 80px; }
  .p-hero-copy { max-width: 720px; text-align: center; justify-self: center; }
  .p-kicker, .p-actions, .p-hero-notes { justify-content: center; }
  .p-lead { margin-inline: auto; }
  .p-studio-wrap { width: min(720px,100%); justify-self: center; }
  .p-feature-grid { grid-template-columns: repeat(2,1fr); }
  .p-feature-large { grid-row: span 2; }
  .p-feature-wide { grid-column: span 2; }
  .p-security-grid { gap: 3.5rem; }
}
@media (max-width: 760px) {
  .p-shell { width: min(100% - 28px,1180px); }
  .p-head { height: 68px; }
  .p-brand-copy small { display: none; }
  .p-login { padding: .58rem .75rem; }
  .p-hero { padding-top: 125px; }
  .p-hero-grid { min-height: auto; gap: 3rem; }
  .p-hero h1 { font-size: clamp(2.8rem,13vw,4rem); }
  .p-lead { font-size: .98rem; }
  .p-floating-card { display: none; }
  .p-studio { transform: none; }
  .studio-monitors { grid-template-columns: 1fr; }
  .studio-take, .preview-monitor { display: none; }
  .church-scene { height: 180px; }
  .p-trust-row { display: grid; justify-content: center; gap: .7rem; padding: 1rem 0; text-align: center; }
  .p-trust-row div { gap: .6rem; }
  .p-section { padding: 76px 0; }
  .p-section-head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.2rem; }
  .p-section-head h2 br { display: none; }
  .p-feature-grid { grid-template-columns: 1fr; }
  .p-feature, .p-feature-large { grid-column: auto; grid-row: auto; min-height: auto; }
  .p-feature-large { min-height: 500px; }
  .p-feature-wide { grid-template-columns: 1fr; }
  .mini-site { min-height: 170px; }
  .p-steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .p-steps li { padding-right: 0; }
  .step-line { top: 46px; left: 23px; width: 1px; height: calc(100% + 2.2rem); background: linear-gradient(rgba(216,169,79,.35),rgba(255,255,255,.08)); }
  .p-requirements { grid-template-columns: 1fr; gap: 1.8rem; }
  .p-requirements ul { grid-template-columns: 1fr; }
  .p-security-grid { grid-template-columns: 1fr; gap: 3rem; }
  .p-roadmap-inner { grid-template-columns: 1fr; gap: 1rem; }
  .p-foot-main, .p-foot-legal { align-items: flex-start; flex-direction: column; }
  .p-foot-links { justify-content: flex-start; gap: 1rem; }
}
@media (max-width: 480px) {
  .p-brand-copy strong { font-size: .88rem; }
  .p-login { font-size: .7rem; }
  .p-login svg { display: none; }
  .p-actions { display: grid; }
  .p-btn { width: 100%; }
  .p-hero-notes { display: grid; gap: .55rem; }
  .studio-sources { grid-template-columns: repeat(2,1fr); }
  .source { height: 42px; }
  .p-trust-row div { flex-wrap: wrap; justify-content: center; }
  .p-trust-row i { display: none; }
  .security-cards article { grid-template-columns: 38px 1fr; padding: 1.3rem 1.15rem; }
  .security-icon { width: 36px; height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
