/* PRS CARES — marketing site. Dark-luxury "protection" direction:
   deep ocean navy, aqua signal accent, warm sand highlight. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #081521;
  --navy-800: #0b1b2b;
  --navy-700: #10263a;
  --navy-600: #163349;
  --ink: #e8f0f6;
  --ink-dim: #a7bccb;
  --aqua: #22d3ee;
  --aqua-600: #06b6d4;
  --sand: #f4d9a6;
  --line: rgba(255,255,255,0.09);
  --surface: #ffffff;
  --surface-ink: #0c1c2b;
  --surface-dim: #5b7183;

  --text-hero: clamp(2.6rem, 1.2rem + 5.6vw, 5.4rem);
  --text-h2: clamp(1.8rem, 1.1rem + 2.6vw, 3rem);
  --space: clamp(4rem, 3rem + 5vw, 8rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3 { font-family: Fraunces, Georgia, serif; font-weight: 600; line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--sand); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; color: #000; padding: 8px 14px; border-radius: 8px; z-index: 99; }
.hidden { position: absolute; left: -9999px; }

/* --- buttons --- */
.btn {
  --pad: 12px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 999px; font-weight: 600; font-size: 15px;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-600)); color: #04222b;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
  box-shadow: 0 8px 26px rgba(34,211,238,.24);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(34,211,238,.34); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }
.btn--lg { --pad: 16px 30px; font-size: 16.5px; }
.btn--sm { --pad: 9px 16px; font-size: 13.5px; box-shadow: none; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { border-color: var(--aqua); color: var(--aqua); box-shadow: none; }

/* --- nav --- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(8,21,33,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: .04em; font-size: 15px; }
.brand__mark { font-size: 20px; filter: drop-shadow(0 2px 6px rgba(34,211,238,.5)); }
.brand__word b { color: var(--aqua); }
.nav__links { display: flex; gap: 22px; margin-left: auto; font-size: 14.5px; color: var(--ink-dim); }
.nav__links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--aqua); transition: width .25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav .btn { margin-left: 8px; }
@media (max-width: 860px){ .nav__links { display: none; } .nav .btn { margin-left: auto; } }

/* --- hero --- */
.hero { position: relative; overflow: hidden; padding: clamp(4rem,3rem+6vw,9rem) clamp(16px,4vw,48px) var(--space); }
.hero__glow {
  position: absolute; inset: -30% 20% auto -10%; height: 720px;
  background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.28), transparent 55%),
              radial-gradient(circle at 75% 40%, rgba(244,217,166,.14), transparent 55%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner { position: relative; max-width: 940px; }
.eyebrow { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--aqua); font-weight: 600; margin-bottom: 18px; }
.eyebrow--dark { color: var(--aqua-600); }
.hero__h1 { font-size: var(--text-hero); }
.grad { background: linear-gradient(100deg, var(--aqua), var(--sand)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 22px; max-width: 620px; font-size: clamp(1.05rem,.98rem+.4vw,1.28rem); color: var(--ink-dim); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 34px; margin: 44px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-dim); }
.hero__trust b { color: var(--ink); font-family: Fraunces, serif; font-size: 20px; margin-right: 6px; }

/* --- generic section --- */
.section { padding: var(--space) clamp(16px,4vw,48px); max-width: 1180px; margin: 0 auto; }
.section__head { max-width: 720px; }
.section__head h2 { font-size: var(--text-h2); margin: 12px 0; }
.lede { color: var(--ink-dim); font-size: clamp(1rem,.95rem+.3vw,1.15rem); }
.lede--light { color: var(--ink-dim); }

/* coverage cards — deliberately staggered, not a flat uniform grid */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.card { padding: 30px 26px; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--navy-700), var(--navy-800)); transition: transform .25s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-6px); border-color: rgba(34,211,238,.4); }
.card--b { transform: translateY(18px); }
.card--b:hover { transform: translateY(12px); }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; font-size: 24px; border-radius: 14px; background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.25); margin-bottom: 18px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--ink-dim); font-size: 15px; }
@media (max-width: 780px){ .cards { grid-template-columns: 1fr; } .card--b { transform: none; } .card--b:hover { transform: translateY(-6px);} }

/* --- leak section (feature) --- */
.leak { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); border-block: 1px solid var(--line); }
.leak__inner { max-width: 1180px; margin: 0 auto; padding: var(--space) clamp(16px,4vw,48px); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,72px); align-items: center; }
.leak__copy h2 { font-size: var(--text-h2); margin: 12px 0 16px; }
.leak__steps { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.leak__steps li { display: flex; gap: 16px; align-items: flex-start; }
.leak__steps span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(34,211,238,.14); color: var(--aqua); font-weight: 700; border: 1px solid rgba(34,211,238,.3); }
.leak__steps b { display: block; font-size: 16px; }
.leak__steps small { color: var(--ink-dim); font-size: 14px; }

.leak__panel { align-self: center; }
.alertcard { border-radius: 20px; padding: 24px; background: linear-gradient(180deg, #0f2f3d, #0b2230); border: 1px solid rgba(34,211,238,.35); box-shadow: 0 24px 60px rgba(0,0,0,.4); position: relative; overflow: hidden; }
.alertcard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--aqua), transparent); }
.alertcard__top { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: .08em; font-size: 13px; color: #7dd3fc; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #22d3ee; box-shadow: 0 0 0 0 rgba(34,211,238,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,211,238,.55)} 70%{box-shadow:0 0 0 14px rgba(34,211,238,0)} 100%{box-shadow:0 0 0 0 rgba(34,211,238,0)} }
.alertcard__where { margin-top: 14px; font-weight: 600; }
.alertcard__msg { margin-top: 8px; color: var(--ink-dim); font-size: 14.5px; }
.alertcard__msg b { color: var(--ink); }
.alertcard__foot { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--surface-dim); }
.leak__note { margin-top: 16px; font-size: 13px; color: var(--ink-dim); text-align: center; }
@media (prefers-reduced-motion: reduce){ .dot { animation: none; } .btn { transition: none; } }
@media (max-width: 880px){ .leak__inner { grid-template-columns: 1fr; } }

/* --- steps --- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.step { padding: 28px 24px; border-left: 2px solid rgba(34,211,238,.4); }
.step__n { font-family: Fraunces, serif; font-size: 30px; color: var(--aqua); }
.step h3 { font-size: 19px; margin: 10px 0 8px; }
.step p { color: var(--ink-dim); font-size: 15px; }
@media (max-width: 780px){ .steps { grid-template-columns: 1fr; } }

/* --- app --- */
.app { max-width: 1180px; margin: 0 auto; padding: var(--space) clamp(16px,4vw,48px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.app__copy h2 { font-size: var(--text-h2); margin: 12px 0 16px; }
.app__copy .btn { margin-top: 26px; }
.phone { max-width: 320px; margin: 0 auto; border-radius: 26px; padding: 20px; background: linear-gradient(180deg, #fff, #eef5f9); color: var(--surface-ink); box-shadow: 0 30px 70px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.5); }
.phone__note { background: linear-gradient(135deg,#0369a1,#0891b2); color: #fff; border-radius: 12px; padding: 12px 14px; font-size: 14px; font-weight: 600; }
.phone__row { display: flex; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid #e3ecf1; font-size: 15px; }
.phone__row .ok { color: #0891b2; }
.phone__cta { margin-top: 16px; text-align: center; padding: 13px; border-radius: 12px; background: #0891b2; color: #fff; font-weight: 700; font-size: 15px; }
@media (max-width: 780px){ .app { grid-template-columns: 1fr; } }

/* --- quote / lead --- */
.quote { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); border-top: 1px solid var(--line); }
.quote__inner { max-width: 1080px; margin: 0 auto; padding: var(--space) clamp(16px,4vw,48px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.quote__pitch h2 { font-size: var(--text-h2); margin-bottom: 14px; }
.quote__pitch p { color: var(--ink-dim); }
.quote__phone { margin-top: 18px; font-size: 15px; }
.quote__phone a { color: var(--aqua); font-weight: 600; }
.quote__form { display: flex; flex-direction: column; gap: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 22px; padding: 28px; }
.quote__form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; color: var(--ink-dim); font-weight: 500; }
.quote__form input, .quote__form select { padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line); background: rgba(0,0,0,.25); color: var(--ink); font-size: 15px; font-family: inherit; }
.quote__form input:focus, .quote__form select:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(34,211,238,.2); }
.quote__form .btn { margin-top: 6px; }
.quote__fine { font-size: 12.5px; color: var(--surface-dim); text-align: center; }
@media (max-width: 780px){ .quote__inner { grid-template-columns: 1fr; } }

/* --- footer --- */
.foot { padding: 44px clamp(16px,4vw,48px); border-top: 1px solid var(--line); text-align: center; color: var(--ink-dim); }
.foot__brand { font-weight: 700; letter-spacing: .04em; }
.foot__brand b { color: var(--aqua); }
.foot__brand em { color: var(--surface-dim); font-size: 13px; }
.foot__nap { font-style: normal; margin: 12px 0; font-size: 14px; }
.foot__nap a { color: var(--aqua); }
.foot__copy { font-size: 12.5px; color: var(--surface-dim); }
