/* =====================================================
   1. FONT + BASE
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #F6F4EF;
    color: #0F2338;
}

.ab-page,
.ab-wrapper {
    background: #F6F4EF url("https://www.transparenttextures.com/patterns/natural-paper.png");
    color: #0F2338;
    line-height: 1.6;
    overflow-x: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   2. LAYOUT CONTAINERS
===================================================== */
.ab-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ab-main-wrapper {
    padding: 80px 20px;
}

.ab-main-wrapper h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
}

.ab-main-wrapper > .ab-container > p {
    text-align: center;
}

.ab-main-wrapper .ab-card {
    max-width: 650px;
    margin: 0 auto 25px;
    padding: 35px;
    text-align: left;
}

.ab-main-wrapper .ab-card h2 {
    margin-bottom: 10px;
}

.ab-main-wrapper .ab-btn-primary,
.ab-main-wrapper .ab-btn-secondary {
    display: inline-block;
    margin-top: 10px;
}

/* =====================================================
   3. NAVIGATION
===================================================== */
.ab-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(246,244,239,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15,35,56,0.08);
}

.ab-nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ab-logo {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.25s ease;
}

.ab-logo:hover {
    transform: scale(1.05);
}

.ab-hero-logo {
    width: 420px;
    max-width: 90%;
    margin-bottom: 25px;
    opacity: 0.95;
}


@media (max-width:768px){
    .ab-hero-logo {
        width: 280px;
        margin-bottom: 20px;
    }
}
.ab-nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ab-nav-links {
    display: flex;
    gap: 22px;
}

.ab-nav-links a,
.ab-dropbtn {
    text-decoration: none;
    color: #0F2338;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.ab-login-btn {
    background: #0F2338;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.ab-nav-links a::after,
.ab-dropbtn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #C9A15A;
    transition: width 0.25s ease;
}

.ab-nav-links a:hover::after,
.ab-dropdown:hover .ab-dropbtn::after {
    width: 100%;
}

.ab-login-btn {
    transition: all 0.25s ease;
}

.ab-login-btn:hover {
    background: #C9A15A;
    color: #0F2338 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* =====================================================
   4. DROPDOWN
===================================================== */
.ab-dropdown {
    position: relative;
}

.ab-dropbtn {
    background: none;
    border: none;
    cursor: pointer;
}

.ab-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform-origin: top;
    transform: translateY(8px) scale(0.98);
    padding: 8px 0;
    margin-top: 0;

    opacity: 0;
    transform: translateY(5px);
    transition: 0.2s ease;
    pointer-events: none;
}

.ab-dropdown-content a {
    display: block;
    padding: 10px 16px;
    transition: 0.2s ease;
}

.ab-dropdown-content a:hover {
    background: rgba(216,181,116,0.1);
    color: #C9A15A;
}

.ab-dropdown:hover .ab-dropdown-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* hover bridge */
.ab-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

/* =====================================================
   5. HERO
===================================================== */
.ab-hero {
    position: relative;
    height: 600px;
    background-image: url("Images/home-hero.jpeg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.ab-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15,35,56,.35), rgba(15,35,56,.75));
}

.ab-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 820px;
    padding: 20px;
}

.ab-hero h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.18;
}

.ab-hero h1 strong {
    color: #D8B574;
    font-weight: 800;
}

.ab-hero-sub {
    font-size: 18px;
    color: #fff;
    opacity: .92;
    margin-top: 10px;
}

.ab-divider {
    width: 90px;
    height: 3px;
    background: #C9A15A;
    margin: 25px auto;
}

.ab-hero-btn {
    background: #C9A15A;
    color: #0F2338 !important;
    padding: 16px 38px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.ab-hero-btn:hover {
    background: #0F2338;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* =====================================================
   6. SECTIONS
===================================================== */
.ab-section {
    padding: 60px 20px 90px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.ab-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.ab-section-title h1 {
    font-size: 42px;
}

.ab-section-title .lead {
    font-size: 18px;
    color: #5A6B7B;
}

/* =====================================================
   7. CONTENT BLOCKS (ABOUT + STRUCTURED PAGES)
===================================================== */
.ab-content-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.ab-info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ab-cta-block {
    margin: 70px auto 0;
    padding: 34px 28px;

    max-width: 680px;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #0F2338 0%,
        #173A5C 100%
    );

    color: #F6F4EF;
    text-align: center;

    box-shadow:
        0 18px 45px rgba(15,35,56,0.18);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ab-cta-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ab-cta-block p {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 20px;
}

.ab-cta-block::before,
.ab-cta-block::after {
    display: none !important;
    content: none !important;
}

.ab-cta-block .ab-btn-primary {
    background: #C9A15A;
    color: #0F2338 !important;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}

.ab-cta-block:hover {
    transform: translateY(-4px);
    box-shadow:
        0 26px 65px rgba(15,35,56,0.22);
}

.ab-cta-block .ab-btn-primary:hover {
    background: #D8B574;
    transform: translateY(-2px);
}

.ab-info-icon {
    font-size: 26px;
    font-weight: 700;
    color: #C9A15A;
    min-width: 40px;
}

.ab-info-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.ab-info-text p {
    margin-bottom: 10px;
}

.ab-info-text ul {
    padding-left: 18px;
}

.ab-info-text {
    max-width: 720px;
}

/* =====================================================
   8. BUTTONS
===================================================== */
.ab-btn-primary,
.ab-btn-large,
.ab-btn-pricing {
    background: #C9A15A;
    color: #0F2338 !important;
    display: inline-block;
    border-radius: 10px;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ab-btn-secondary {
    border: 2px solid #0F2338;
    background: transparent;
    color: #0F2338 !important;
}

.ab-btn-primary:hover,
.ab-btn-large:hover,
.ab-btn-pricing:hover {
    background: #0F2338;
    color: #fff !important;
    transition: 0.25s ease;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

button {
    font-family: 'Montserrat', sans-serif;
}

.ab-btn-primary::before,
.ab-btn-large::before,
.ab-btn-pricing::before,
.ab-hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

.ab-btn-primary:hover::before,
.ab-btn-large:hover::before,
.ab-btn-pricing:hover::before,
.ab-hero-btn:hover::before {
    transform: translateX(100%);
}

/* =====================================================
   9. GRID + CARDS
===================================================== */

.blog-card a,
.ab-card a {
    color: #0F2338;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
    position: relative;
}

.ab-card {
    overflow: visible;
    border: 1px solid rgba(15, 35, 56, 0.08);
}

.blog-card a::after,
.ab-card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #C9A15A;
    transition: width 0.25s ease;
}

.blog-card a:hover,
.ab-card a:hover {
    color: #C9A15A;
}

.blog-card a:hover::after,
.ab-card a:hover::after {
    width: 100%;
}

.ab-card .ab-btn-secondary {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #0F2338;
    border-bottom: 2px solid #C9A15A;
    padding-bottom: 2px;
}

.ab-card .ab-btn-secondary:hover {
    color: #C9A15A;
}

.ab-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.ab-card,
.blog-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ab-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.blog-wrapper {
    padding: 60px 20px 100px;
}

.blog-container {
    max-width: 740px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-category {
    text-transform: uppercase;
    color: #C9A15A;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.blog-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.blog-meta {
    font-size: 14px;
    color: #718096;
    margin-bottom: 30px;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 56, 0.15);
}

.blog-hero img {
  transform: scale(1.02);
  transition: transform 6s ease;
}

.blog-hero:hover img {
  transform: scale(1.05);
}

.featured-image-container {
    width: 100%;
    height: 400px;
    background: #E2E8F0;
    border-radius: 12px;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2D3748;
}

.blog-content h2 {
    font-size: 28px;
    margin: 50px 0 20px;
    color: #0F2338;
    font-weight: 700;
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-content .lead {
    font-size: 22px;
    color: #0F2338;
    font-weight: 500;
    border-left: 4px solid #C9A15A;
    padding-left: 25px;
    margin: 40px 0;
}

.blog-content a {
  color: #C9A15A;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.blog-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #C9A15A;
  transition: width 0.25s ease;
}

.blog-content a:hover::after {
  width: 100%;
}
.ab-blog-cta {
    margin-top: 60px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(201, 161, 90, 0.08);
    border-radius: 12px;
}

.ab-blog-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.ab-blog-cta p {
    max-width: 600px;
    margin: 0 auto 25px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #C9A15A;
    font-weight: 600;
    margin-bottom: 30px;
    transition: 0.2s;
}

.back-link:hover {
    color: #0F2338;
    transform: translateX(-5px);
}

@media (max-width:768px){
    .featured-image-container {
        height: 250px;
    }
}

.ab-highlight-box {
  background: rgba(201,161,90,0.08);
  border-left: 4px solid #C9A15A;
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: 8px;
}

.ab-highlight-box h3 {
  margin: 6px 0;
}
/* =====================================================
   10. FOOTER
===================================================== */
.ab-footer {
    background: #0F2338;
    color: #F6F4EF;
    padding: 70px 20px 40px;
}

.ab-footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    align-items: start;
}

.ab-footer-logo {
    max-width: 180px;
}

.ab-footer h4 {
    color: #D8B574;
    margin-bottom: 12px;
}

.ab-footer a {
    display: block;
    color: #F6F4EF;
    margin-bottom: 6px;
    text-decoration: none;
    opacity: .9;
}

.ab-footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 20px;
}

.ab-disclaimer {
    max-width: 900px;
    margin: 20px auto 0;
    letter-spacing: 0.2px;    
    font-size: 11px;
    line-height: 1.5;
    opacity: 0.6;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
}

/* =====================================================
   11. MOBILE
===================================================== */
@media (max-width:768px){
    .ab-nav-container,
    .ab-nav-right,
    .ab-nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .ab-hero {
        height: auto;
        min-height: 520px;
        padding: 60px 20px;
    }

    .ab-info-block {
        flex-direction: column;
    }
}

/* =====================================================
   12. PRICING (LEAN + ALIGNED WITH EXISTING SYSTEM)
===================================================== */

/* wrapper spacing */
.ab-pricing-wrapper {
    padding: 80px 20px;
}

/* header */
.ab-pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-pricing-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.ab-pricing-header p {
    font-size: 18px;
    color: #5A6B7B;
}

/* price text */
.ab-price {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0 20px;
}

/* features list */
.ab-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ab-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.ab-check {
    color: #C9A15A;
    margin-right: 10px;
    font-weight: 700;
}

/* tag label */
.ab-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #0F2338;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.ab-card.featured {
    border: 2px solid #C9A15A;
    transform: scale(1.03);
}

.ab-link-secondary {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #0F2338;
    text-decoration: underline;
    text-align: center;
    transition: color 0.2s ease;
}

.ab-link-secondary:hover {
    color: #C9A15A;
}

.ab-maintenance-note {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #5A6B7B;
}

.ab-card.emergency {
    max-width: 650px;
    margin-top: 60px;
}

.ab-pricing-wrapper .ab-container {
    max-width: 1100px;   /* tighten from full width */
}

.ab-pricing-clarifier {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
    margin: 0 auto 30px;
    max-width: 500px;
    color: #5A6B7B;
    line-height: 1.6;
}

.ab-pricing-clarifier strong {
    color: #0F2338;
}

/* =========================
   SUPPORT SECTION
========================= */

.ab-support-section {
  margin-top: 70px;
  text-align: center;
}

.ab-support-subtext {
  color: #5A6B7B;
  max-width: 600px;
  margin: 0 auto 35px;
}

.ab-support-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ab-support-card {
  text-align: center;
  padding-top: 18px;
}

.ab-support-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.ab-support-center .ab-card {
  max-width: 420px;
  width: 100%;
}

.ab-price-sm {
  font-size: 24px;
}

.ab-support-desc {
  font-size: 14px;
  color: #5A6B7B;
  margin-bottom: 12px;
}

.ab-support-note {
  font-size: 12.5px;
  color: #7A8A9A;
  line-height: 1.4;
  margin-bottom: 14px;
}

.ab-pill {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
  font-weight: 600;
}

.ab-pill-new {
  background: rgba(15,35,56,0.08);
  color: #0F2338;
}

.ab-pill-existing {
  background: rgba(201,161,90,0.15);
  color: #0F2338;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .ab-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ab-support-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-wrapper {
    max-width: 900px;        
    margin: 40px auto 80px;   
    padding: 0 20px;          
}

.checkout-wrapper iframe {
    width: 100%;
    height: 1500px;                border: none;
    border-radius: 12px;
}

/* ========================================================
   13. LEGAL / POLICY PAGES (DATA SECURITY, PRIVACY, TERMS)
=========================================================== */

.ab-legal-wrapper {
    padding: 80px 20px;
}

.ab-legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.7);
    padding: 40px;
    border-radius: 12px;
}

.ab-legal-header {
    margin-bottom: 40px;
}

.ab-legal-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.ab-legal-header p {
    color: #5A6B7B;
    font-size: 14px;
}

.ab-legal-section {
    margin-bottom: 35px;
}

.ab-legal-section h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.ab-legal-section p {
    margin-bottom: 10px;
    color: #333;
}

.ab-legal-section ul {
    padding-left: 18px;
}

.ab-legal-section li {
    margin-bottom: 8px;
}

/* =====================================================
   14. VAULT REPORT STYLES
===================================================== */

.vault-report-page {
    background:
        #F6F4EF
        url("https://www.transparenttextures.com/patterns/natural-paper.png");

    color: #0F2338;

    font-family:
        'Montserrat',
        sans-serif;

    margin: 0;
    padding: 0;
}

.vault-report-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.loading-state {
    text-align: center;
    padding: 100px 20px;
    font-size: 18px;
    color: #5A6B7B;
}

.report-cover {
    text-align: center;
    padding: 20px 0 70px;
    border-bottom: 2px solid #C9A15A;
    margin-bottom: 60px;
}

.report-logo {
    width: 230px;
    max-width: 90%;
    margin-bottom: 25px;
}

.report-cover h1 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0F2338;
}

#display-datetime {
    font-size: 18px;
    color: #5A6B7B;
    margin-bottom: 25px;
}

.report-cover p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 1.7;
    color: #5A6B7B;
}

.report-section {
    margin-bottom: 70px;
}

.report-section h2 {
    font-size: 30px;
    margin-bottom: 26px;
    color: #0F2338;
    font-weight: 800;
}

.vault-items-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vault-card {
    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(6px);

    border-radius: 28px;

    padding: 34px 34px;

    box-shadow:
        0 18px 40px rgba(15,35,56,0.08);

    border:
        1px solid rgba(15,35,56,0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    overflow-wrap: break-word;
}

.vault-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 24px 55px rgba(15,35,56,0.12);
}

.vault-card p {
    margin: 0 0 14px;
    line-height: 1.7;
    font-size: 17px;
}

.vault-card p:last-child {
    margin-bottom: 0;
}

.vault-card strong {
    color: #0F2338;
    font-weight: 700;
}

.report-disclaimer {
    background:
        rgba(201,161,90,0.10);

    border-left:
        5px solid #C9A15A;

    padding: 28px 30px;

    border-radius: 18px;

    margin-top: 80px;
}

.report-disclaimer strong {
    display: block;
    margin-bottom: 14px;
    font-size: 20px;
}

.report-disclaimer p {
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}

/* =====================================================
   PRINT STYLES
===================================================== */

@media print {

    body {
        background: #fff !important;
    }

    .vault-report-container {
        max-width: 100%;
        padding: 0;
    }

    .vault-card,
    .report-section,
    .report-disclaimer {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .report-section h2 {
        break-after: avoid;
        page-break-after: avoid;
    }

    .vault-card {
        box-shadow: none;
        border: 1px solid rgba(15,35,56,0.08);
    }

    .loading-state {
        display: none !important;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .vault-report-container {
        padding: 25px 16px 50px;
    }

    .report-cover {
        padding-bottom: 50px;
        margin-bottom: 45px;
    }

    .report-cover h1 {
        font-size: 42px;
    }

    .report-cover p {
        font-size: 17px;
    }

    .report-section h2 {
        font-size: 26px;
    }

    .vault-card {
        padding: 26px 24px;
        border-radius: 22px;
    }

    .vault-card p {
        font-size: 16px;
    }

}