
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#555555;
  --brand:#1a73e8;
  --brand-dark:#0f5ec0;
  --surface:#f6f7f9;
  --border:#e3e5e8;
  --focus:#ffab00;
  --max: 1040px;
  --radius-lg: 18px;
  --radius-sm: 10px;
}

html{box-sizing:border-box}
*,*:before,*:after{box-sizing:inherit}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
}

a{
  color:var(--brand);
}
a:hover,
a:focus{
  color:var(--brand-dark);
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:20px 20px 32px;
}

header{
  background:linear-gradient(180deg, #f9fafc 0%, #ffffff 60%);
  border-bottom:1px solid var(--border);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  font-weight:700;
  font-size:1.2rem;
  letter-spacing:0.25px;
}

nav a{
  text-decoration:none;
  margin-left:14px;
  padding:6px 10px;
  border-radius:var(--radius-sm);
  font-size:0.95rem;
}
nav a:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:2px;
}

.hero{
  margin-top:24px;
  margin-bottom:12px;
}
.hero-inner{
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  padding:22px 20px 20px;
  background:var(--surface);
}
.hero h1{
  font-size:clamp(1.9rem, 3.4vw, 2.5rem);
  margin:0 0 10px;
}
.hero p{
  margin:0 0 14px;
  color:var(--muted);
}
.hero-tagline{
  font-weight:500;
  color:var(--brand-dark);
  margin-bottom:10px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.btn-primary{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  padding:10px 18px;
  border-radius:var(--radius-sm);
  font-weight:600;
  font-size:0.95rem;
}
.btn-primary:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:3px;
}
.hero-note{
  font-size:0.9rem;
  color:var(--muted);
}

main section{
  margin-top:26px;
}

.card{
  background:var(--surface);
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  padding:18px 18px 16px;
}

h2{
  font-size:clamp(1.35rem, 2.5vw, 1.6rem);
  margin-top:0;
  margin-bottom:10px;
}
h3{
  font-size:1.05rem;
  margin-top:16px;
  margin-bottom:6px;
}

ul{
  padding-left:22px;
  margin-top:8px;
}
li+li{
  margin-top:4px;
}

.grid{
  display:grid;
  gap:14px;
}
.grid.two{
  grid-template-columns:1fr;
}
@media (min-width: 760px){
  .grid.two{
    grid-template-columns:1fr 1fr;
  }
}

.meta{
  font-size:0.92rem;
  color:var(--muted);
}

footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:16px 20px 26px;
  font-size:0.9rem;
  color:var(--muted);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:static;
  width:auto;
  height:auto;
  padding:8px 12px;
  background:#000;
  color:#fff;
  border-radius:8px;
  z-index:1000;
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}


/* Inline logo SVG */
.brand svg{
  width:40px;
  height:40px;
  flex-shrink:0;
  display:block;
}
