:root {
  --ink: #142437;
  --muted: #5b6a79;
  --navy: #173b59;
  --navy-deep: #102d46;
  --teal: #12aeb8;
  --teal-soft: #dff5f2;
  --pink: #d85d91;
  --pink-soft: #f8e5ee;
  --lavender: #f1edff;
  --cream: #e4eef7;
  --white: #ffffff;
  --line: #dfe5e9;
  --shadow: 0 24px 70px rgba(16, 45, 70, 0.12);
  --shadow-soft: 0 12px 35px rgba(16, 45, 70, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }



.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 249, 253, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 59, 89, .08);
  box-shadow: 0 5px 22px rgba(20, 36, 55, .035);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(244, 249, 253, 0.985);
  border-color: rgba(20, 36, 55, .11);
  box-shadow: 0 10px 30px rgba(20, 36, 55, .07);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand img { border-radius: 11px; box-shadow: 0 8px 20px rgba(23,59,89,.1); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .72rem; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav > a:not(.button) { text-decoration: none; font-weight: 700; font-size: .88rem; color: #405265; }
.site-nav > a:not(.button):hover { color: var(--navy); }


.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 99px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .9rem; }
.button-large { min-height: 56px; padding-inline: 26px; }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 26px rgba(23,59,89,.18); }
.button-primary:hover { background: var(--navy-deep); box-shadow: 0 16px 32px rgba(23,59,89,.22); }
.button-secondary { color: var(--navy); border-color: #cbd7df; background: rgba(255,255,255,.72); }
.button-secondary:hover { background: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 104px;
  background:
    radial-gradient(circle at 8% 10%, rgba(18,174,184,.11), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(216,93,145,.12), transparent 26%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23,59,89,.12), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: .77rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(3.2rem, 6vw, 5.7rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.3rem, 4.2vw, 3.85rem); }
h3 { line-height: 1.2; letter-spacing: -.02em; }
.hero-lead { max-width: 660px; margin-bottom: 30px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 28px 0 0; padding: 0; list-style: none; color: #405265; font-size: .9rem; font-weight: 700; }
.trust-list li { position: relative; padding-left: 22px; }
.trust-list li::before { content: ""; position: absolute; left: 0; top: .48em; width: 10px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }

.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; }
.visual-backdrop { position: absolute; inset: 7% 4% 10% 8%; border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; background: linear-gradient(135deg, #d8f3f0, #ece6ff 58%, #f7dce9); }
.live-mobile {
  position: relative;
  z-index: 2;
  width: min(72%, 390px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(23,59,89,.18);
  border-radius: 34px;
  background: #111820;
  box-shadow: var(--shadow);
  transform: none;
}
.hero-video { width: 100%; aspect-ratio: 720 / 1076; object-fit: cover; border-radius: 25px; background: #edf2f3; }

.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 1.01rem; }
.section-heading-light .eyebrow { color: #8ee1dd; }


.product-grid { display: grid; grid-template-columns: 1.55fr .65fr; gap: 22px; align-items: stretch; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.product-card-featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; padding: 34px; }
.product-card-copy h3 { margin: 10px 0 14px; font-size: clamp(2rem, 3vw, 2.8rem); }
.product-card-copy p { color: var(--muted); }
.product-card-copy .product-intro { color: var(--ink); font-size: 1.08rem; font-weight: 750; }
.product-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: #176145; background: #def4e8; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 24px; }







.product-card-coming .product-label { color: #0f636b; background: #dff5f2; }




.daymoney-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.01rem; }























.faq-intro > p:not(.eyebrow) { color: var(--muted); }

details { border-bottom: 1px solid #d7d3e2; }
summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 17px; color: var(--pink); font-size: 1.55rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; padding: 0 48px 22px 0; margin: 0; color: var(--muted); }


.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: auto 1fr; gap: 26px 50px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 12px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { color: var(--muted); font-size: .78rem; }
.footer-links { justify-self: end; display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a,
.footer-contact,
.footer-privacy {
  color: #45586a;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}
.footer-contact,
.footer-privacy {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.footer-links a:hover,
.footer-contact:hover,
.footer-privacy:hover { color: var(--navy); }
.footer-note { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid var(--line); color: #70808e; font-size: .78rem; }


.contact-dialog {
  width: min(760px, calc(100vw - 32px));
  height: min(88dvh, 780px);
  max-height: min(88dvh, 780px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: transparent;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(13, 48, 76, .28);
}
.contact-dialog::backdrop {
  background: rgba(12, 35, 57, .64);
  backdrop-filter: blur(7px);
}
.contact-card {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(44, 114, 166, .2);
  border-radius: 28px;
  background: linear-gradient(180deg, #e4f3fb 0%, #eff8fd 54%, #e7f4fb 100%);
}
.contact-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 24px;
  color: #173b59;
  border-bottom: 1px solid rgba(44, 114, 166, .16);
  background: linear-gradient(135deg, #d8edf8 0%, #c9e6f5 100%);
}
.contact-title-wrap { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 104, 153, .18);
  border-radius: 16px;
  color: #1d6899;
  background: rgba(255,255,255,.62);
}
.contact-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-modal-header .eyebrow { color: #1d6899; margin-bottom: 5px; }
.contact-modal-header h2 { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.15; }
.contact-modal-header p:last-child { margin: 8px 0 0; color: #4f6d82; }
.contact-close {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(29, 104, 153, .14);
  border-radius: 50%;
  color: #173b59;
  background: rgba(255,255,255,.68);
  font-family: inherit;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.contact-close:hover { background: #fff; }
.contact-modal-body {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  padding: 24px 30px 28px;
}
.contact-modal-body::-webkit-scrollbar { width: 10px; }
.contact-modal-body::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(29,104,153,.3); background-clip: padding-box; }
.contact-highlight {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: 1px solid #b9dcef;
  border-radius: 18px;
  color: #143f62;
  background: rgba(255,255,255,.58);
}
.contact-highlight strong { font-size: 1.03rem; }
.contact-highlight span { color: #456579; }
.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(98, 157, 194, .24);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(32, 91, 128, .06);
}
.contact-fields label { display: grid; gap: 7px; }
.contact-fields label > span { color: #31536d; font-size: .82rem; font-weight: 800; }
.contact-field-full { grid-column: 1 / -1; }
.contact-fields input,
.contact-fields textarea {
  width: 100%;
  border: 1px solid #bdd3e1;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-fields input { min-height: 48px; padding: 10px 13px; }
.contact-fields textarea { min-height: 150px; padding: 12px 13px; resize: vertical; }
.contact-fields input:hover,
.contact-fields textarea:hover { border-color: #9fc5db; }
.contact-fields input:focus,
.contact-fields textarea:focus { border-color: #1d6899; background: #fff; box-shadow: 0 0 0 3px rgba(29,104,153,.13); }
.contact-status { min-height: 1.35em; margin: 12px 2px 0; font-size: .86rem; font-weight: 750; }
.contact-status:empty { display: none; }
.contact-status[data-state="pending"] { color: var(--navy); }
.contact-status[data-state="success"] { color: #18794e; }
.contact-status[data-state="error"] { color: #a13636; }
.contact-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  border-top: 1px solid rgba(44, 114, 166, .16);
  background: rgba(218, 238, 249, .92);
}
.contact-note { margin: 0; color: #526f83; font-size: .9rem; }
.contact-modal-footer .button:disabled { cursor: wait; opacity: .68; }
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lightbox { width: min(92vw, 980px); max-height: 92vh; padding: 0; border: 0; border-radius: 20px; background: transparent; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.lightbox::backdrop { background: rgba(8,21,33,.82); backdrop-filter: blur(8px); }
.lightbox img { width: min(88vh, 92vw); height: min(88vh, 92vw); max-width: 100%; object-fit: contain; aspect-ratio: 1 / 1; border-radius: 20px; background: #eee9fb; }
.lightbox-close { position: fixed; top: 18px; right: 22px; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); background: rgba(8,21,33,.62); font-size: 1.7rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.privacy-page, .success-page { min-height: 100vh; }
.simple-hero { padding: 88px 0 50px; }
.simple-hero h1 { max-width: 880px; font-size: clamp(3rem, 6vw, 5rem); }
.prose { max-width: 820px; padding-bottom: 100px; }
.prose h2 { margin: 50px 0 16px; font-family: inherit; font-size: 1.55rem; font-weight: 850; letter-spacing: -.02em; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--navy); font-weight: 750; }
.back-link { display: inline-flex; margin-top: 28px; color: var(--navy); font-weight: 850; text-decoration: none; }

.success-main { display: grid; min-height: calc(100vh - 170px); place-items: center; padding: 72px 0 96px; }
.success-card { width: min(100%, 720px); padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.success-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; color: var(--navy); background: var(--teal-soft); font-size: 2rem; font-weight: 900; }
.success-card h1 { margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4rem); }
.success-message { color: var(--muted); }
.success-details { display: none; margin: 28px 0 0; padding: 18px; border-radius: 16px; background: #f3f7f8; text-align: left; }
.success-details.is-visible { display: grid; gap: 5px; }
.success-details span { color: var(--muted); font-size: .84rem; }
.success-actions { display: none; gap: 12px; justify-content: center; margin-top: 26px; }
.success-actions.is-visible { display: flex; }
.success-note { margin-top: 20px; color: #70808e; font-size: .82rem; }
.status-error .success-icon { color: #9f3f6a; background: var(--pink-soft); }

@media (max-width: 1080px) {
  .site-nav { gap: 16px; }
  .hero-grid { gap: 42px; }
  .product-grid { grid-template-columns: 1fr; }
  
  
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .header-inner { min-height: 70px; }
  .brand small { display: none; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav > a:not(.button),
  .site-nav .nav-contact { padding: 11px 8px; text-align: left; }
  .site-nav .button { margin-top: 6px; }
  .hero { padding: 68px 0 78px; }
  .hero-grid, .product-card-featured, .daymoney-layout, .faq-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { min-height: 570px; }
  .live-mobile { width: min(70%, 360px); }
  
  
  
  
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: flex; flex-wrap: nowrap; gap: 8px; width: 100%; }
  .hero-actions .button { width: auto; min-width: 0; flex: 1 1 0; padding-inline: 10px; white-space: nowrap; }
  .trust-list { display: grid; grid-template-columns: repeat(2, max-content); justify-content: center; gap: 9px 12px; width: 100%; margin-inline: auto; text-align: left; font-size: clamp(.66rem, 2.7vw, .78rem); }
  .trust-list li { padding-left: 16px; white-space: nowrap; }
  .trust-list li::before { top: .5em; width: 8px; height: 5px; }
  .hero-visual { min-height: 500px; }
  .live-mobile { width: min(76%, 330px); }
  .product-card-featured, .product-card-coming { padding: 24px; }
  .product-actions { align-items: flex-start; flex-direction: column; }
  
  
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .success-card { padding: 34px 22px; }
  .success-actions { grid-template-columns: 1fr; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-field-full { grid-column: auto; }
}


@media (max-width: 700px) {
  .contact-dialog { width: calc(100vw - 20px); height: 92dvh; max-height: 92dvh; border-radius: 22px; }
  .contact-card { border-radius: 22px; }
  .contact-modal-header { padding: 22px 20px 20px; }
  .contact-title-wrap { gap: 12px; }
  .contact-icon { width: 44px; height: 44px; flex-basis: 44px; border-radius: 14px; }
  .contact-modal-body { padding: 18px; }
  .contact-fields { grid-template-columns: 1fr; padding: 16px; }
  .contact-field-full { grid-column: auto; }
  .contact-modal-footer { align-items: stretch; flex-direction: column; padding: 16px 18px; }
  .contact-modal-footer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}



.product-grid { grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr); }
































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

@media (max-width: 700px) {
  .product-card-featured { grid-template-columns: 1fr; padding: 24px; }
  
  
  
  
  
  
  
  
}



.product-grid { grid-template-columns: 1fr; }
.product-card-featured {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 48px;
  padding: 42px;
}
.product-card-featured .product-tag-cloud { margin-top: 24px; }
.product-card-featured .product-tag-cloud span {
  border-color: #d8e6e2;
  color: #285867;
  background: #edf7f4;
}







@media (max-width: 820px) {
  .product-card-featured { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
}

@media (max-width: 600px) {
  .product-card-featured { padding: 24px; }
  
}


.product-card-featured > .product-explorer {
  grid-column: 1 / -1;
  margin: 8px -42px -42px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: none;
}

@media (max-width: 820px) {
  .product-card-featured > .product-explorer { margin: 4px -30px -30px; }
}

@media (max-width: 600px) {
  .product-card-featured > .product-explorer { margin: 2px -24px -24px; }
}
.product-card-featured { overflow: hidden; }



.hero { padding-bottom: 58px; }
#products { padding-top: 56px; }
#products .section-heading { margin-bottom: 30px; }
.product-card-featured {
  column-gap: 48px;
  row-gap: 22px;
}
.product-card-featured .product-tag-cloud span {
  border-color: #c8d8ee;
  color: #174b78;
  background: #eaf2fb;
}
.product-card-featured > .product-explorer {
  margin-top: -2px;
}





.product-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23,59,89,.1);
  border-radius: 22px;
  background: #eee9fb;
}
.product-carousel-track {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}
.product-carousel-track::-webkit-scrollbar { display: none; }
.product-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  scroll-snap-align: start;
  cursor: zoom-in;
}
.product-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(23,59,89,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 5px 18px rgba(16,45,70,.12);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}
.product-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #9fb5c8;
  cursor: pointer;
}
.product-carousel-dots button.is-active { background: var(--navy); }
.product-carousel-track:focus-visible { outline: 3px solid rgba(18,174,184,.35); outline-offset: -3px; }

@media (max-width: 820px) {
  .hero { padding-bottom: 44px; }
  #products { padding-top: 46px; }
  .product-card-featured { row-gap: 20px; }
}

@media (max-width: 600px) {
  .hero { padding-bottom: 36px; }
  #products { padding-top: 38px; }
  #products .section-heading { margin-bottom: 24px; }
  .product-card-featured > .product-explorer { margin-top: -4px; }
  .product-carousel { max-width: 520px; margin-inline: auto; }
  
}


#products .section-heading h2 { margin-bottom: 0; }
.product-card-featured > .product-explorer {
  display: block;
  grid-column: 1 / -1;
  margin: 0 -42px -42px;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--white);
  box-shadow: none;
}









@media (max-width: 820px) {
  .product-card-featured > .product-explorer { margin: 0 -30px -30px; }
  
}

@media (max-width: 600px) {
  .product-card-featured > .product-explorer { margin: 0 -24px -24px; }
  
  
  
}



.product-card-copy .product-tag-cloud { margin-bottom: 4px; }






















.privacy-dialog {
  width: min(960px, calc(100vw - 32px));
  height: min(88dvh, 920px);
  max-height: min(88dvh, 920px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(13, 48, 76, .28);
}
.privacy-dialog::backdrop {
  background: rgba(12, 35, 57, .64);
  backdrop-filter: blur(7px);
}
.privacy-card {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(44, 114, 166, .2);
  border-radius: 28px;
  background: linear-gradient(180deg, #e4f3fb 0%, #eff8fd 54%, #e7f4fb 100%);
}
.privacy-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 24px;
  color: #173b59;
  border-bottom: 1px solid rgba(44, 114, 166, .16);
  background: linear-gradient(135deg, #d8edf8 0%, #c9e6f5 100%);
}
.privacy-title-wrap { display: flex; align-items: flex-start; gap: 18px; }
.privacy-shield {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 104, 153, .18);
  border-radius: 16px;
  color: #1d6899;
  background: rgba(255,255,255,.62);
}
.privacy-shield svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-modal-header .eyebrow { color: #1d6899; margin-bottom: 5px; }
.privacy-modal-header h2 { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.15; }
.privacy-modal-header p:last-child { margin: 8px 0 0; color: #4f6d82; }
.privacy-close {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 104, 153, .14);
  border-radius: 50%;
  color: #173b59;
  background: rgba(255,255,255,.68);
  font-family: inherit;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.privacy-close:hover { background: #fff; }
.privacy-modal-body {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  padding: 24px 30px 28px;
}
.privacy-modal-body::-webkit-scrollbar { width: 10px; }
.privacy-modal-body::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(29,104,153,.3); background-clip: padding-box; }
.privacy-highlight {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: 1px solid #b9dcef;
  border-radius: 18px;
  color: #143f62;
  background: rgba(255,255,255,.58);
}
.privacy-highlight strong { font-size: 1.03rem; }
.privacy-highlight span { color: #456579; }
.privacy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.privacy-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(98, 157, 194, .24);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(32, 91, 128, .06);
}
.privacy-item-wide { grid-column: 1 / -1; }
.privacy-item-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #1d6899;
  background: #dceef8;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.privacy-item h3 { margin: 1px 0 7px; color: #173b59; font-size: 1rem; }
.privacy-item p { margin: 0; color: #536a7a; font-size: .92rem; line-height: 1.65; }
.privacy-item p + p { margin-top: 8px; }
.privacy-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  border-top: 1px solid rgba(44, 114, 166, .16);
  background: rgba(218, 238, 249, .92);
}
.privacy-modal-footer p { margin: 0; color: #526f83; font-size: .9rem; }

@media (max-width: 700px) {
  .privacy-dialog { width: calc(100vw - 20px); height: 92dvh; max-height: 92dvh; border-radius: 22px; }
  .privacy-card { border-radius: 22px; }
  .privacy-modal-header { padding: 22px 20px 20px; }
  .privacy-title-wrap { gap: 12px; }
  .privacy-shield { width: 44px; height: 44px; flex-basis: 44px; border-radius: 14px; }
  .privacy-modal-body { padding: 18px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-item-wide { grid-column: auto; }
  .privacy-modal-footer { align-items: stretch; flex-direction: column; padding: 16px 18px; }
  .privacy-modal-footer .button { width: 100%; }
}



























/* App purchase cards */
.store-section {
  padding-top: 58px;
  padding-bottom: 76px;
  border-top: 1px solid rgba(23,59,89,.08);
  background:
    radial-gradient(circle at 18% 8%, rgba(39,132,190,.10), transparent 32%),
    radial-gradient(circle at 88% 88%, rgba(216,93,145,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(223,237,248,.78));
}
.store-section .section-heading { margin-bottom: 28px; }
.store-section .section-heading h2 { margin-bottom: 0; }
.app-purchase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.app-purchase-card {
  --app-accent: #277daf;
  --app-soft: #e8f4fb;
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(23,59,89,.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, var(--app-soft), transparent 44%),
    rgba(255,255,255,.94);
  box-shadow: 0 20px 54px rgba(16,45,70,.10);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.app-purchase-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--app-accent);
}
.app-purchase-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--app-accent) 38%, white);
  box-shadow: 0 28px 66px rgba(16,45,70,.15);
}
.app-purchase-daymoney { --app-accent: #c8578b; --app-soft: #faeaf1; }
.app-purchase-body {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px 32px 28px 34px;
}
.app-purchase-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.app-purchase-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--app-accent);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.app-purchase-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.app-purchase-price {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 20%, white);
  border-radius: 14px;
  color: var(--navy);
  background: color-mix(in srgb, var(--app-soft) 88%, white);
  line-height: 1.1;
}
.app-purchase-price strong { font-size: 1.04rem; white-space: nowrap; }
.app-purchase-price span { margin-top: 4px; color: #66798a; font-size: .7rem; font-weight: 750; }
.app-purchase-body > p {
  margin: 24px 0 26px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
}
.app-purchase-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--app-accent);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--app-accent) 25%, transparent);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.app-purchase-cta:hover {
  transform: translateY(-2px);
  filter: brightness(.94);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--app-accent) 30%, transparent);
}
.app-purchase-cta span:last-child { font-size: 1.25rem; line-height: 1; }
.app-purchase-note {
  display: block;
  margin-top: 10px;
  color: #748593;
  font-size: .72rem;
  text-align: center;
}
@media (max-width: 820px) {
  .app-purchase-grid { grid-template-columns: 1fr; }
  .app-purchase-card, .app-purchase-body { min-height: 0; }
}
@media (max-width: 600px) {
  .store-section { padding-top: 48px; padding-bottom: 60px; }
  .app-purchase-grid { gap: 18px; }
  .app-purchase-body { padding: 25px 22px 22px 25px; }
  .app-purchase-heading { gap: 12px; }
  .app-purchase-price { padding: 8px 9px; }
  .app-purchase-price strong { font-size: .92rem; }
}

.section { padding: 58px 0; }
.hero { padding-top: 68px; padding-bottom: 38px; }
#products { padding-top: 38px; padding-bottom: 42px; }
#products .section-heading { margin-bottom: 22px; }
#store { padding-top: 42px; padding-bottom: 50px; }
.store-section .section-heading { margin-bottom: 24px; }
.site-footer { padding: 30px 0; }
.footer-grid { gap: 20px 42px; }
.footer-note { padding-top: 16px; }

@media (max-width: 820px) {
  .section { padding: 48px 0; }
  .hero { padding-top: 56px; padding-bottom: 30px; }
  #products { padding-top: 30px; padding-bottom: 34px; }
  #store { padding-top: 34px; padding-bottom: 40px; }
  .store-section .section-heading { margin-bottom: 20px; }
}

@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .hero { padding-top: 46px; padding-bottom: 24px; }
  #products { padding-top: 24px; padding-bottom: 28px; }
  #products .section-heading { margin-bottom: 18px; }
  #store { padding-top: 28px; padding-bottom: 34px; }
  .store-section .section-heading { margin-bottom: 18px; }
  .site-footer { padding: 24px 0; }
  .footer-grid { gap: 18px 32px; }
  .footer-note { padding-top: 14px; }
}



.product-card-whatpdf{margin-top:22px;background:linear-gradient(155deg,#fff,#f2f7fc)}
.whatpdf-home-visual{display:grid;place-items:center;min-height:330px;padding:24px;border-radius:22px;background:radial-gradient(circle at 20% 10%,rgba(47,99,245,.16),transparent 45%),linear-gradient(145deg,#edf5fb,#e7f0f8)}




@media(max-width:820px){.whatpdf-home-visual{min-height:280px}.product-card-whatpdf{margin-top:16px}}


.whatpdf-home-visual{overflow:hidden}
.whatpdf-home-visual img{display:block;width:100%;height:auto;max-height:560px;object-fit:contain;border-radius:18px;box-shadow:0 18px 44px rgba(20,48,74,.12)}


.whatpdf-home-carousel {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #eef4fb;
}
.whatpdf-home-carousel .product-carousel-track { aspect-ratio: 1 / 1; }
.whatpdf-home-carousel .product-carousel-slide img {
  max-height: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

/* WhatPDF discovery links */
.whatpdf-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 14px;
  color: #60778b;
  font-size: .88rem;
  line-height: 1.45;
}
.whatpdf-quick-links-label {
  font-weight: 800;
  color: var(--navy);
}
.whatpdf-quick-links a {
  color: #225f91;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(34,95,145,.28);
}
.whatpdf-quick-links a:hover {
  color: #153f63;
  border-bottom-color: currentColor;
}
@media (max-width: 600px) {
  .whatpdf-quick-links {
    gap: 7px 10px;
    font-size: .84rem;
  }
}
