:root{
  --primary:#990033;
  --bg:#fdfdfd;
  --text:#141414;
  --muted:#5b5b5b;
  --link:#660033;
  --focus:#990033;
  --card:#ffffff;
  --border:#e9e2e5;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 20px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{color:var(--link); text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:3px solid var(--focus); outline-offset:3px; border-radius:12px}

/* Skip link for accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:2px solid var(--focus);
  border-radius:12px;
  z-index:9999;
}

.topbar{
  background:var(--primary);
  color:#fff;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
  white-space:nowrap;
  min-width: 240px;
  color:#fff;
  text-decoration:none !important;
}
.brand img{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  object-fit:contain;
  padding:4px;
  flex:0 0 auto;
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .title span{
  font-size:18px;
}
.brand .title .tagline{
  display:block;
  font-weight: 850;
  font-size: 15px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(255,255,255,.95);
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
  text-decoration:none !important;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}

.btn-primary{
  background:#fff;
  color:var(--primary);
  border-color:rgba(255,255,255,.35);
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
}
.btn-primary:hover{box-shadow: 0 12px 28px rgba(0,0,0,.20)}

.btn-ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.35);
}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

.btn-dark{
  background:var(--primary);
  color:#fff;
  border-color:rgba(0,0,0,.05);
  box-shadow: 0 10px 25px rgba(153,0,51,.25);
}
.btn-dark:hover{box-shadow: 0 12px 28px rgba(153,0,51,.30)}

/* extracted from inline styles used for "Log In" buttons */
.btn-outline-light{
  border:1px solid var(--border);
  background:#fff;
  color:var(--primary);
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 18px 70px;
}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
  margin-top:10px;
}
@media (max-width: 980px){
  .hero{grid-template-columns:1fr;}
  .brand{min-width:auto;}
}

h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  margin:10px 0 10px;
  letter-spacing:-.7px;
}
.subtitle{
  font-size: clamp(16px, 1.4vw, 18px);
  color:var(--muted);
  margin: 0 0 18px;
  max-width: 70ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:18px;
}
.fineprint{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card{
  padding:18px;
}
.hero-card h2{
  margin:0 0 10px;
  font-size:16px;
  color:var(--primary);
  letter-spacing:.2px;
}
.checklist{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#2a2a2a;
}
.check{
  width:22px; height:22px;
  border-radius:8px;
  background: rgba(153,0,51,.10);
  display:grid;
  place-items:center;
  color:var(--primary);
  font-weight:900;
  flex:0 0 auto;
  margin-top:1px;
}

.section{ margin-top:42px; }
.section h2{
  font-size:26px;
  margin:0 0 10px;
  letter-spacing:-.3px;
}
.section p{
  margin:0 0 16px;
  color:var(--muted);
  max-width: 80ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){
  .grid3{grid-template-columns:1fr}
}

.feature{ padding:18px; }
.feature .icon{
  width:44px; height:44px;
  border-radius:16px;
  background: rgba(153,0,51,.10);
  display:grid;
  place-items:center;
  color:var(--primary);
  font-weight:900;
  margin-bottom:10px;
  border:1px solid rgba(153,0,51,.12);
}
.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:14px}

.shots{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 980px){
  .shots{grid-template-columns:1fr}
}

figure{margin:0}
.shot{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background:#fff;
}
.shot img{width:100%; height:auto; display:block;}
figcaption{
  padding:10px 12px 12px;
  color:var(--muted);
  font-size:13px;
  border-top:1px solid var(--border);
  background: linear-gradient(to bottom, #fff, #faf7f8);
}

.cta{
  margin-top:44px;
  padding:22px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  background: linear-gradient(135deg, rgba(153,0,51,.08), rgba(153,0,51,.02));
  border:1px solid rgba(153,0,51,.14);
  border-radius: var(--radius);
}
@media (max-width: 980px){
  .cta{flex-direction:column; align-items:flex-start;}
}
.cta strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
  color:var(--primary);
}
.cta span{ color:var(--muted); }

/* extracted from inline styles used inside CTA */
.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

footer{
  margin-top:54px;
  padding-top:18px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}