:root{
  --brand-900:#0b2a4a;
  --brand-700:#FF001C;
  --brand-600:#FF001C;
  --brand-500:#1d6fb3;
  --brand-300:#e67b7b;
  --brand-100:#fbe8e8;
  --ink:#111827;
  --body-text:#4b5563;
  --muted:#6b7280;
  --soft:#f8fafc;
  --glassglow-opacity:.52;
  --glassglow-blur:18px;
  --glassglow-saturate:145%;
  --glassglow-brightness:1.03;
  --glassglow-vignette-opacity:.34;
  --glassglow-red-opacity:.08;
  --glassglow-white-opacity:.52;
  --glassglow-edge-opacity:.44;
}
*{
  box-sizing:border-box;
}
html{
  min-height:100%;
  font-size:90%;
  scroll-behavior:smooth;
}
body{
  min-height:100%;
  margin:0;
  background:#efeded;
  color:var(--body-text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height:1.7;
  overflow-x:hidden;
}
a{
  color:inherit;
  text-decoration:none;
}
img{
  display:block;
  max-width:100%;
}
.site-emboss-logo{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:0;
}
.site-emboss-logo-mark{
  position:relative;
  width:min(88vw, 1220px);
  aspect-ratio:1 / 1;
  background:
    url('e_logo_vector.svg?v=2') center / contain no-repeat;
  opacity:.28;
  filter:grayscale(1) brightness(.98) contrast(.72);
}
.site-emboss-logo-mark::before,
.site-emboss-logo-mark::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    url('e_logo_vector.svg?v=2') center / contain no-repeat;
}
.site-emboss-logo-mark::before{
  transform:translate(-14px,-14px);
  filter:grayscale(1) brightness(1.18) blur(10px);
  opacity:.56;
  mix-blend-mode:screen;
}
.site-emboss-logo-mark::after{
  transform:translate(14px,14px);
  filter:grayscale(1) brightness(.68) blur(12px);
  opacity:.42;
  mix-blend-mode:multiply;
}
.site-glassglow-layer{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:var(--glassglow-opacity);
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,var(--glassglow-white-opacity)) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(circle at 84% 20%, rgba(255,0,28,var(--glassglow-red-opacity)) 0%, rgba(255,0,28,0) 30%),
    radial-gradient(circle at 50% 108%, rgba(17,24,39,var(--glassglow-vignette-opacity)) 0%, rgba(17,24,39,0) 42%),
    linear-gradient(135deg, rgba(255,255,255,var(--glassglow-edge-opacity)) 0%, rgba(255,255,255,.08) 46%, rgba(255,255,255,var(--glassglow-edge-opacity)) 100%);
  backdrop-filter:blur(var(--glassglow-blur)) saturate(var(--glassglow-saturate)) brightness(var(--glassglow-brightness));
  -webkit-backdrop-filter:blur(var(--glassglow-blur)) saturate(var(--glassglow-saturate)) brightness(var(--glassglow-brightness));
}
.site-header,
.legal-main,
.site-footer{
  position:relative;
  z-index:1;
}
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:120;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  border-bottom:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}
.site-header-shell{
  width:min(100% - 32px, 1280px);
  min-height:56px;
  margin:0 auto;
  padding:8px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.site-header-brand img{
  width:auto;
  height:2.35rem;
}
.site-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 16px;
  border-radius:12px;
  font-size:.7875rem;
  font-weight:700;
  line-height:1.1;
  white-space:nowrap;
  box-shadow:0 10px 22px rgba(15,23,42,.08);
  transition:filter .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-brand{
  background:linear-gradient(135deg,var(--brand-600),#ff4b5f);
  color:#fff;
}
.btn-brand:hover{
  filter:brightness(.96);
  box-shadow:0 10px 20px rgba(255,0,28,.2);
}
.btn-dark{
  background:var(--brand-900);
  color:#fff;
}
.btn-dark:hover{
  filter:brightness(1.05);
}
.legal-main{
  width:min(100% - 32px, 1280px);
  margin:0 auto;
  padding:96px 0 24px;
}
.legal-hero,
.legal-card{
  border:0;
  background:transparent;
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);
  box-shadow:0 24px 70px rgba(15,23,42,.08);
}
.legal-hero{
  border-radius:28px;
  padding:24px;
}
.legal-hero-brand{
  display:flex;
  align-items:center;
  gap:18px;
}
.legal-logo-tile{
  width:142px;
  height:72px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:24px;
  border:1px solid rgba(255,0,28,.24);
  background:rgba(255,255,255,.82);
  box-shadow:0 18px 44px rgba(255,0,28,.12);
}
.legal-logo-tile img{
  width:112px;
  height:auto;
}
.legal-kicker{
  margin:0 0 2px;
  color:#241f22;
  font-size:clamp(1.44rem, 2.16vw, 2.295rem);
  font-weight:800;
  letter-spacing:0;
  line-height:1.08;
}
.legal-hero h1{
  margin:0;
  color:#7b818d;
  font-size:clamp(.9rem, 1.53vw, 1.152rem);
  font-weight:600;
  letter-spacing:0;
  line-height:1.45;
}
.legal-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-top:26px;
}
.legal-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 18px;
  border-radius:999px;
  color:#374151;
  font-weight:800;
  line-height:1.1;
  transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.legal-tab:hover{
  background:rgba(255,255,255,.9);
  color:var(--brand-900);
  transform:translateY(-1px);
}
.legal-tab.is-active{
  background:linear-gradient(135deg,var(--brand-600),#ff4b5f);
  color:#fff;
  box-shadow:0 14px 26px rgba(255,0,28,.18);
}
.legal-card{
  margin-top:32px;
  border-radius:28px;
  padding:clamp(28px, 5vw, 56px);
}
.legal-card-header{
  margin-bottom:34px;
}
.legal-card-header h2{
  margin:0;
  color:#241f22;
  font-size:clamp(1.701rem, 3.483vw, 3.0375rem);
  font-weight:850;
  letter-spacing:0;
  line-height:1.05;
}
.legal-card-header p{
  margin:14px 0 0;
  color:#7b818d;
  font-size:clamp(.9rem, 1.62vw, 1.152rem);
  font-weight:500;
}
.legal-section{
  padding:18px 0;
}
.legal-section + .legal-section{
  border-top:1px solid rgba(15,23,42,.06);
}
.legal-section h3{
  margin:0 0 14px;
  color:#241f22;
  font-size:clamp(1.062rem, 1.8vw, 1.395rem);
  font-weight:800;
  letter-spacing:0;
  line-height:1.25;
}
.legal-section p{
  max-width:1120px;
  margin:0 0 14px;
  color:var(--body-text);
  font-size:clamp(.9rem, 1.395vw, 1.098rem);
  letter-spacing:0;
}
.legal-section p:last-child{
  margin-bottom:0;
}
.legal-list{
  display:grid;
  gap:12px;
  max-width:1120px;
  margin:0;
  padding:0;
  list-style:none;
  color:var(--body-text);
  font-size:clamp(.9rem, 1.395vw, 1.098rem);
}
.legal-list li{
  position:relative;
  padding-left:24px;
}
.legal-list li::before{
  content:"";
  position:absolute;
  top:.78em;
  left:0;
  width:5px;
  height:5px;
  border-radius:999px;
  background:var(--brand-700);
  box-shadow:0 0 0 4px rgba(255,0,28,.08);
}
.site-footer{
  display:flex;
  align-items:flex-end;
  min-height:390px;
  overflow:hidden;
  isolation:isolate;
  padding:6rem 0 2.5rem;
}
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(239,237,237,0) 0%, rgba(255,255,255,.76) 48%, rgba(255,255,255,.96) 100%);
}
.site-footer-city{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  max-width:none;
  height:100%;
  z-index:-2;
  pointer-events:none;
  opacity:.54;
  transform:none;
  background-position:center bottom;
  background-size:100% 100%;
  background-repeat:no-repeat;
  -webkit-mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.48) 5%, rgba(0,0,0,.86) 12%, #000 22%);
  mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.48) 5%, rgba(0,0,0,.86) 12%, #000 22%);
}
.site-footer-content{
  position:relative;
  z-index:2;
  width:min(100% - 32px, 1280px);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:rgba(17,24,39,.66);
  font-size:.7875rem;
  text-shadow:0 1px 10px rgba(255,255,255,.72);
}
.site-footer-logo img{
  width:auto;
  height:2.5rem;
}
.site-footer-copy{
  overflow-wrap:anywhere;
}
@media (max-width:760px){
  .site-header-shell{
    width:min(100% - 24px, 1280px);
  }
  .site-header-brand img{
    height:2rem;
  }
  .site-actions{
    gap:8px;
  }
  .btn{
    min-height:38px;
    padding:8px 11px;
    border-radius:11px;
    font-size:.702rem;
  }
  .legal-main{
    width:min(100% - 24px, 1280px);
    padding-top:86px;
  }
  .legal-hero{
    padding:18px;
    border-radius:24px;
  }
  .legal-hero-brand{
    align-items:flex-start;
    gap:14px;
  }
  .legal-logo-tile{
    width:118px;
    height:58px;
    border-radius:20px;
  }
  .legal-logo-tile img{
    width:94px;
    height:auto;
  }
  .legal-tabs{
    gap:8px;
    margin-top:20px;
  }
  .legal-tab{
    min-height:40px;
    padding:9px 13px;
    font-size:.828rem;
  }
  .legal-card{
    margin-top:24px;
    border-radius:24px;
    padding:24px 20px;
  }
  .site-footer{
    min-height:380px;
    padding-top:7.5rem;
    padding-bottom:calc(2.5rem + env(safe-area-inset-bottom));
  }
  .site-footer-city{
    left:50%;
    right:auto;
    width:100%;
    max-width:480px;
    height:100%;
    transform:translateX(-50%);
    opacity:.78;
    background-position:center bottom;
    background-size:cover;
    -webkit-mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.58) 4%, rgba(0,0,0,.9) 10%, #000 18%);
    mask-image:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.58) 4%, rgba(0,0,0,.9) 10%, #000 18%);
  }
  .site-footer-content{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    gap:12px;
  }
  .site-footer-copy{
    width:min(100%, 280px);
    max-width:280px;
    line-height:1.45;
    color:rgba(17,24,39,.72);
  }
}
