:root{
  --teal-50: #e6fffb;
  --teal-100: #ccfff6;
  --teal: #00b3a6;
  --teal-700: #008f80;
  --slate-900: #0b0c10;
  --muted: #6b7280;
  --bg: #f7faf9;
  --card: #ffffff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:var(--bg);
  color:var(--slate-900);
  -webkit-font-smoothing:antialiased;
}

/* Header / brand */
.site-header{
  background: linear-gradient(180deg, var(--card), var(--card));
  border-bottom: 1px solid rgba(11,12,16,0.06);
  padding: 18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  width:100%;
  justify-content:center;
}
.logo{height:110px;width:auto;display:block;margin:0 auto}
.brand-text{display:flex;flex-direction:column;line-height:1}
.site-name{font-weight:700;font-size:1.05rem}
.tagline{font-size:0.85rem;color:var(--teal-700)}

nav.site-nav{display:flex;gap:14px;align-items:center}
nav.site-nav a{color:var(--muted);text-decoration:none;font-weight:600}
nav.site-nav a:hover{color:var(--teal)}

main{max-width:980px;margin:28px auto;padding:0 18px}
h1,h2,h3{color:var(--slate-900)}
h2{border-bottom:2px solid rgba(11,12,16,0.06);padding-bottom:0.5rem}

.app{margin-bottom:20px}
.cta{display:inline-block;margin-top:10px;padding:10px 14px;background:var(--teal);color:#fff;text-decoration:none;border-radius:6px;font-weight:700}
.cta.secondary{background:transparent;color:var(--teal);border:2px solid var(--teal)}

footer{background:transparent;color:var(--muted);text-align:center;padding:22px 8px;font-size:0.9rem}

/* Utilities */
.container{padding:12px}

@media (max-width:640px){
  .logo{height:80px}
  .tagline{display:none}
  .site-header{padding:12px}
}

/* Styles extracted from index.html — standard site styles */
/* index.html base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #222;
}
header {
  background: #2f4a5a;
  color: #fff;
  padding: 2rem;
  text-align: center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
}
header p {
  font-size: 1.2rem;
  margin-top: 0;
}
nav {
  margin-top: 4px;
}
nav a {
  color: #61dafb;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 0.6rem 1.25rem;
  max-width: 900px;
  margin: auto;
}
h2 {
  color: #456a8f;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}
.app {
  margin-bottom: 0.75rem;
}
.app h3 {
  margin-bottom: 0.3rem;
}
footer {
  background: #0b0c10;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #34495E;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.cta:hover {
  background: #008f80;
  color: #fff;
}

/* Ensure header titles remain white, overriding global h1 rules */
header h1 {
  color: #fff;
}

/* Feature block: place media (icon) left of feature list */
.features{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}
.features .features-media{
  flex:0 0 160px;
  margin-top:1.2rem;
}
.features .features-media img{
  width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 6px 18px rgba(11,12,16,0.08);
  display:block;
}
.features .features-body{flex:1}

@media (max-width:640px){
  .features{flex-direction:column}
  .features .features-media{flex:0 0 auto;max-width:220px;margin:0 auto}
}

