:root{
  --navy:#061a3a;
  --navy-2:#0c2146;
  --gold:#c6a15b;
  --gold-soft:#d8bf92;
  --text:#1f2e46;
  --muted:#637089;
  --line:#dfe4ea;
  --bg:#f5f7fa;
  --bg-2:#f7f8fb;
  --white:#ffffff;
  --shadow:0 14px 35px rgba(12, 23, 44, 0.08);
  --radius:18px;
  --container:1440px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",sans-serif;
  color:var(--text);
  background:var(--bg);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

/* Top bar */
.topbar{
  background:linear-gradient(90deg,var(--navy) 0%, #08224b 100%);
  color:#fff;
  position:sticky;
  top: 0;
  z-index:30;
}
.topbar-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:inline-flex;
  align-items:center;
}
.brand-icon{
  width:28px;
  height:28px;
  color:var(--gold);
  display:grid;
  place-items:center;
  font-size:24px;
  margin-right: 6px;
}
.brand-text{
  font-family:"Caladea",serif;
  font-size:1.95rem;
  font-weight:600;
  color:#fff;
}
.topbar-tagline{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:.95rem;
}

/* Nav */
.main-nav{
  background:rgba(255,255,255,.9);
  border-bottom:1px solid #d9e0e8;
  position:sticky;
  top:68px;
  backdrop-filter:blur(10px);
  z-index:1000;
  overflow:visible;
}

.nav-inner{
  display:flex;
  justify-content:center;
}
.menu{
  list-style:none;
  display:flex;
  margin:0;
  padding:0;
}
.menu-item{
  position:relative;
}
.menu-btn{
  border:none;
  background:transparent;
  min-height:58px;
  padding:0 20px;
  display:flex;
  align-items:center;
  gap:9px;
  cursor:pointer;
  color:#52617b;
}
.menu-btn:hover,
.menu-item.open > .menu-btn{
  color:var(--navy);
}
.menu-icon{
  color:var(--gold);
}
.caret{
  color:#7f8898;
  font-size:.9rem;
}

.coming-soon-badge {
  margin-left: auto;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(198, 161, 91, 0.12);
  color: #b8964f;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.main-nav{
  background:rgba(255,255,255,.9);
  border-bottom:1px solid #d9e0e8;
  position:sticky;
  top:68px;
  z-index:200;
  backdrop-filter:blur(10px);
  overflow:visible;
}

.nav-inner{
  display:flex;
  justify-content:center;
  position:relative;
  overflow:visible;
}

.nav-scroll{
  width:auto;
  max-width:100%;
  overflow:visible;
  margin:0 auto;
}

.menu{
  list-style:none;
  display:flex;
  margin:0;
  padding:0;
  overflow:visible;
}

.menu-item{
  position:relative;
}

.menu-btn{
  border:none;
  background:transparent;
  min-height:58px;
  padding:0 20px;
  display:flex;
  align-items:center;
  gap:9px;
  cursor:pointer;
  color:#52617b;
}

.menu-btn:hover,
.menu-item.open > .menu-btn{
  color:var(--navy);
}

.menu-btn{
  -webkit-appearance:none;
  appearance:none;
}

.menu-icon{
  color:var(--gold);
}

.caret{
  color:#7f8898;
  font-size:.9rem;
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  width:290px;
  background:#fff;
  border:1px solid #e0e5ec;
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:12px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.22s ease;
  z-index:9999;
  pointer-events:none;

  max-height:min(70vh, 560px);
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}

.menu-item.open .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

@media (hover: hover) and (pointer: fine){
  .menu-item:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
  }
}

.dropdown a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 18px;
  color:#34435b;
}

.dropdown a:hover{
  background:#f8fafc;
  color:var(--navy);
}

@media (max-width: 860px){
  .topbar-tagline{
    display:none;
  }

  .nav-inner{
    justify-content:flex-start;
    overflow:visible;
    position:relative;
  }

  .nav-scroll{
    width:100%;
    overflow-x:auto;
    overflow-y:visible;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .nav-scroll::-webkit-scrollbar{
    display:none;
  }

  .menu{
    min-width:max-content;
    flex-wrap:nowrap;
    overflow:visible;
  }

  .menu-item{
    flex:0 0 auto;
    position:static;
  }

  .dropdown{
    display:none !important;
  }

  .menu-item.open .dropdown,
  .menu-item.open:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
  }

  .menu-item:hover .dropdown{
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    pointer-events:none;
  }

  .category-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .cta-stats{grid-template-columns:1fr}
}

.mobile-dropdown-host{
  position:absolute;
  top:58px;
  left:16px;
  width:min(320px, calc(100vw - 32px));
  background:#fff;
  border:1px solid #e0e5ec;
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:12px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.22s ease;
  z-index:99999;
  pointer-events:none;
  max-height:calc(100vh - 180px);
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}

.mobile-dropdown-host.open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-dropdown-host a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 18px;
  color:#34435b;
}

.mobile-dropdown-host a:hover{
  background:#f8fafc;
  color:var(--navy);
}

/* Hero */
.hero{
  padding:88px 30px;
  background:
    radial-gradient(circle at right center, rgba(214,220,229,.35), transparent 26%),
    linear-gradient(180deg, #f7f7f6 0%, #f5f7fa 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr 1fr;
  gap:58px;
  align-items:center;
}
.eyebrow{
  margin:0 0 18px;
  color:var(--gold);
  letter-spacing:.14em;
  font-size:.84rem;
  font-weight:600;
}
.hero h1,
.section-heading h2,
.cta-section h2{
  margin:0 0 20px;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(3rem, 5vw, 5rem);
  line-height:.95;
  font-weight:600;
  color:#091938;
}
.hero-text{
  font-size:1.3rem;
  line-height:1.65;
  color:#4f5c73;
  max-width:620px;
  margin:0 0 34px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:36px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px 28px;
  border:1px solid transparent;
  font-weight:600;
  transition:.22s ease;
}
.btn-primary{
  background:var(--navy);
  color:#fff;
}
.btn-primary:hover{background:#0a2858}
.btn-secondary{
  border-color:#8d98ab;
  color:var(--navy);
  background:transparent;
}
.btn-secondary:hover{background:#eef2f6}
.btn-light{
  background:#fff;
  color:var(--navy);
}
.btn-outline-light{
  border-color:rgba(255,255,255,.35);
  color:#fff;
}
.btn-outline-light:hover{
  background:rgba(255,255,255,.08);
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  color:#7a8495;
}
.meta-item{
  display:flex;
  align-items:center;
  gap:8px;
}
.meta-icon{color:var(--gold)}

/* Hero media */
.hero-media{
  position:relative;
}
.media-card{
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
  border-radius:4px;
}
.media-card img{
  width:100%;
  height:420px;
  object-fit:cover;
}
.play-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:84px;
  height:84px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:1.65rem;
  cursor:pointer;
  backdrop-filter:blur(4px);
}
.stats-card{
  position:absolute;
  left:-24px;
  bottom:-22px;
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow);
  padding:22px 26px;
  display:flex;
  gap:16px;
  align-items:center;
}
.stats-icon{
  width:50px;
  height:50px;
  background:var(--navy);
  color:var(--gold);
  display:grid;
  place-items:center;
}
.stats-number{
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  font-weight:700;
  line-height:1;
}
.stats-label{
  margin-top:4px;
  color:#7b8696;
  letter-spacing:.12em;
  font-size:.9rem;
}

.hero,
.section-light,
.section-light-alt,
.cta-section,
.site-footer{
  position:relative;
  z-index:1;
}

/* Sections */
.section-light{
  background:#f5f7fa;
  padding:96px 0 70px;
}
.section-light-alt{
  background:#f5f7fa;
  padding:82px 0 110px;
}
.section-heading{
  margin-bottom:48px;
}
.section-heading.centered{
  text-align:center;
}
.section-heading h2{
  font-size:clamp(2.8rem, 4vw, 4.6rem);
  margin-bottom:12px;
}
.section-heading p:last-child{
  margin:0;
  font-size:1.15rem;
  color:#5d6b82;
}

/* Categories */
.category-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}
.category-card{
  background:#fff;
  border:1px solid #dce2ea;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 3px 12px rgba(10,25,56,.04);
}
.category-card-large .category-image{
  height:320px;
}
.category-card .category-image{
  width:100%;
  height:190px;
  object-fit:cover;
}
.category-image-wrap{
  position:relative;
}
.category-icon{
  position:absolute;
  top:20px;
  left:20px;
  width:54px;
  height:54px;
  background:rgba(255,255,255,.9);
  display:grid;
  place-items:center;
  font-size:1.6rem;
  color:#24344d;
}
.category-content{
  padding:34px 28px 30px;
}
.category-content h3,
.feature-card h3{
  margin:0 0 12px;
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  color:#1b2940;
}
.category-content p{
  margin:0 0 20px;
  color:#5d6a80;
  font-size:1.05rem;
  line-height:1.55;
}
.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}
.tag-list span{
  background:#edf1f6;
  color:#66748a;
  padding:8px 12px;
  border-radius:6px;
  font-size:.95rem;
}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color:var(--navy);
}

/* Feature cards */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:38px;
}
.feature-card{
  background:#fff;
  border:1px solid #e1d6bb;
  padding:38px 28px 34px;
  text-align:center;
  min-height:300px;
}
.feature-icon-box{
  width:66px;
  height:66px;
  margin:0 auto 28px;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:var(--gold);
  font-size:1.6rem;
}
.feature-card p{
  margin:0;
  color:#5f6d84;
  line-height:1.6;
  font-size:1.05rem;
}

/* CTA dark section */
.cta-section{
  background:var(--navy);
  color:#fff;
  padding:84px 0 0;
}
.cta-inner{
  text-align:center;
  max-width:980px;
}
.cta-icon-box{
  width:78px;
  height:78px;
  margin:0 auto 32px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.1);
  color:var(--gold);
  font-size:1.8rem;
}
.cta-section h2{
  color:#fff;
  font-size:clamp(3rem, 4vw, 4.6rem);
}
.cta-section p{
  max-width:880px;
  margin:0 auto 36px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
  font-size:1.2rem;
}
.cta-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:52px;
}
.cta-divider{
  height:1px;
  background:rgba(255,255,255,.12);
  margin:0 auto 44px;
  max-width:950px;
}
.cta-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  padding-bottom:68px;
}
.cta-stats strong{
  display:block;
  color:var(--gold);
  font-family:"Cormorant Garamond",serif;
  font-size:4rem;
  font-weight:600;
  line-height:1;
}
.cta-stats span{
  display:block;
  margin-top:8px;
  letter-spacing:.12em;
  color:rgba(255,255,255,.6);
  font-size:1rem;
}

/* Footer */
.site-footer{
  background:var(--navy);
  color:#fff;
}
.footer-top{
  border-top:1px solid rgba(255,255,255,.1);
  padding:72px 0 56px;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:70px;
}
.footer-brand-block{
  max-width:250px;
}
.footer-brand{
  margin-bottom:22px;
}
.footer-brand-text{
  color:rgba(255,255,255,.72);
  line-height:1.55;
  font-size:1rem;
}
.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:42px;
}
.footer-links-grid h4{
  margin:0 0 24px;
  font-size:1rem;
  color:rgba(255,255,255,.65);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:600;
}
.footer-links-grid a{
  display:block;
  color:rgba(255,255,255,.82);
  margin-bottom:16px;
}
.footer-links-grid a:hover{
  color:#fff;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
}
.footer-bottom-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.5);
}
.footer-bottom-links{
  display:flex;
  gap:28px;
}
.footer-bottom-links a{
  color:rgba(255,255,255,.55);
}
.footer-bottom-links a:hover{
  color:#fff;
}

/* Responsive */
@media (max-width: 1200px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr}
  .stats-card{left:20px;bottom:-20px}
  .footer-top{grid-template-columns:1fr}
  .footer-links-grid{grid-template-columns:repeat(2,1fr)}
}


@media (max-width: 640px){
  .container{width:min(100% - 28px, var(--container))}
  .hero{padding:58px 0 64px}
  .hero-text{font-size:1.08rem}
  .hero-actions,
  .cta-actions{flex-direction:column}
  .btn{width:100%}
  .media-card img{height:280px}
  .stats-card{
    position:relative;
    left:0;
    bottom:0;
    margin-top:18px;
    width:max-content;
  }
  .footer-links-grid{grid-template-columns:1fr}
  .footer-bottom-inner{
    flex-direction:column;
    justify-content:center;
    padding:18px 0;
    text-align:center;
  }
}

@media (max-width: 860px){
  .category-grid{
    grid-template-columns:1fr !important;
  }

  .feature-grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 640px){
  .cta-stats{
    grid-template-columns:1fr;
    gap:24px;
    width:100%;
  }

  .cta-stats > div{
    min-width:0;
  }

  .cta-stats strong{
    font-size:clamp(2.4rem, 12vw, 3.2rem);
    line-height:1;
    word-break:break-word;
  }

  .cta-stats span{
    font-size:.9rem;
    letter-spacing:.08em;
    word-break:break-word;
  }
}

/* Tools directory page */
.tools-hero .hero-text{
  max-width:700px;
}

.tools-directory-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}

.tools-directory-card{
  background:#fff;
  border:1px solid #dce2ea;
  border-radius:18px;
  padding:30px 26px;
  box-shadow:0 3px 12px rgba(10,25,56,.04);
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:100%;
}

.tools-directory-card-featured{
  border-color:#e1d6bb;
  box-shadow:0 10px 28px rgba(10,25,56,.06);
}

.tools-directory-card-soon{
  background:linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.tools-directory-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  background:rgba(198, 161, 91, 0.12);
  color:var(--navy);
  font-size:1.5rem;
  border-radius:14px;
}

.tools-directory-content h3{
  margin:0 0 12px;
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  color:#1b2940;
}

.tools-directory-content p{
  margin:0 0 18px;
  color:#5d6a80;
  font-size:1.02rem;
  line-height:1.6;
}

.directory-status{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  padding:8px 12px;
  border-radius:8px;
  background:rgba(198, 161, 91, 0.12);
  color:#b8964f;
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.02em;
}

@media (max-width: 1200px){
  .tools-directory-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  .tools-directory-grid{
    grid-template-columns:1fr !important;
  }
}

#tool-categories {
    padding-top: 40px;
}

/* Tool category page */
.tool-category-page{
  padding-top:72px;
}

.tool-category-heading{
  max-width:900px;
  margin:0 auto 34px;
}

.tool-category-title{
  margin:0 0 14px;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(3rem, 5vw, 4.6rem);
  line-height:.96;
  font-weight:600;
  color:#091938;
}

.tool-category-summary{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin:0 0 34px;
}

.tool-category-summary-item{
  background:#fff;
  border:1px solid #dce2ea;
  border-radius:16px;
  padding:20px 22px;
  box-shadow:0 3px 12px rgba(10,25,56,.04);
}

.tool-category-summary-label{
  display:block;
  margin-bottom:8px;
  font-size:.82rem;
  letter-spacing:.12em;
  color:var(--gold);
  font-weight:600;
  text-transform:uppercase;
}

.tool-category-summary-item strong{
  font-size:1.15rem;
  color:#1b2940;
}

.tool-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tool-list-card{
  background:#fff;
  border:1px solid #dce2ea;
  border-radius:18px;
  padding:24px 26px;
  box-shadow:0 3px 12px rgba(10,25,56,.04);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.tool-list-card-live{
  border-color:#e1d6bb;
  box-shadow:0 10px 28px rgba(10,25,56,.06);
}

.tool-list-main{
  display:flex;
  align-items:flex-start;
  gap:18px;
  flex:1;
  min-width:0;
}

.tool-list-icon{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(198, 161, 91, 0.12);
  color:var(--navy);
  font-size:1.35rem;
}

.tool-list-content{
  min-width:0;
}

.tool-list-content h2{
  margin:0 0 8px;
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  line-height:1.05;
  color:#1b2940;
}

.tool-list-content p{
  margin:0;
  color:#5d6a80;
  font-size:1rem;
  line-height:1.6;
  max-width:860px;
}

.tool-list-side{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:14px;
  flex:0 0 auto;
}

.tool-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  padding:8px 12px;
  border-radius:8px;
  background:rgba(198, 161, 91, 0.12);
  color:#b8964f;
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.02em;
  white-space:nowrap;
}

.tool-status-live{
  background:rgba(6, 26, 58, 0.08);
  color:var(--navy);
}

.tool-list-btn{
  min-width:148px;
}

.tool-category-bottom-link{
  margin-top:30px;
}

@media (max-width: 1024px){
  .tool-list-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .tool-list-side{
    width:100%;
    align-items:flex-start;
  }
}

@media (max-width: 860px){
  .tool-category-summary{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .tool-category-page{
    padding-top:56px;
  }

  .tool-list-card{
    padding:20px 18px;
  }

  .tool-list-main{
    gap:14px;
  }

  .tool-list-icon{
    width:50px;
    height:50px;
    flex-basis:50px;
    font-size:1.2rem;
  }

  .tool-list-content h2{
    font-size:1.6rem;
  }

  .tool-list-btn{
    width:100%;
  }
}

/* Legal pages */
.legal-page{
  padding:88px 0 96px;
  background:
    radial-gradient(circle at right top, rgba(214,220,229,.24), transparent 22%),
    linear-gradient(180deg, #f7f7f6 0%, #f5f7fa 100%);
}

.legal-page-container{
  max-width:980px;
}

.legal-header{
  margin-bottom:34px;
}

.legal-title{
  margin:0 0 16px;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(3rem, 5vw, 4.6rem);
  line-height:.96;
  font-weight:600;
  color:#091938;
}

.legal-intro{
  max-width:760px;
  margin:0 0 14px;
  font-size:1.12rem;
  line-height:1.7;
  color:#536279;
}

.legal-updated{
  margin:0;
  color:#7b8696;
  font-size:.96rem;
}

.legal-card{
  background:#fff;
  border:1px solid #dce2ea;
  border-radius:18px;
  padding:38px 34px;
  box-shadow:0 8px 24px rgba(10,25,56,.05);
}

.legal-section + .legal-section{
  margin-top:34px;
  padding-top:34px;
  border-top:1px solid #e8edf3;
}

.legal-section h2{
  margin:0 0 14px;
  font-family:"Cormorant Garamond",serif;
  font-size:2rem;
  line-height:1.08;
  color:#1b2940;
}

.legal-section p{
  margin:0 0 14px;
  color:#5d6a80;
  line-height:1.75;
  font-size:1.02rem;
}

.legal-section p:last-child{
  margin-bottom:0;
}

.legal-section a{
  color:var(--navy);
  text-decoration:underline;
  text-underline-offset:3px;
}

.legal-list{
  margin:0;
  padding-left:20px;
  color:#5d6a80;
}

.legal-list li{
  margin:0 0 12px;
  line-height:1.7;
}

.legal-list li:last-child{
  margin-bottom:0;
}

@media (max-width: 640px){
  .legal-page{
    padding:58px 0 68px;
  }

  .legal-card{
    padding:24px 18px;
  }

  .legal-section + .legal-section{
    margin-top:26px;
    padding-top:26px;
  }

  .legal-section h2{
    font-size:1.6rem;
  }

  .legal-intro,
  .legal-section p,
  .legal-list li{
    font-size:1rem;
  }
}