
:root {
  --black: #000000;
  --teal1: #35A4AB;
  --teal2: #35A4AB; /* background */
  --teal3: #35A4AB;
  --teal4: #35A4AB;
  --red: #dc182d;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--teal2);
  color: var(--white);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  line-height: 1.5;
}
a { color: var(--white); text-decoration: underline; }
a:hover { opacity:.9; }

.container { width: min(1100px, 98%); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, rgba(53, 164, 171,.95), rgba(53, 164, 171,.70));
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.nav { display:flex; align-items:center; justify-content:space-between; padding: 12px 0; }
.brand { display:flex; align-items:center; gap:12px; }
.brand img { height: 40px; }

.pill {
  display:inline-block; padding:.45rem .85rem; border-radius:7px;
  background: var(--white); color: var(--black); font-weight:800; letter-spacing:.25px;
}

.hero {
  padding: clamp(48px, 8vw, 96px) 0;
  background: radial-gradient(1000px 500px at 20% -10%, rgba(255,255,255,.18), transparent 60%),
              radial-gradient(800px 400px at 90% 10%, rgba(255,255,255,.12), transparent 60%);
}
.hero-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap: clamp(20px, 4vw, 48px); align-items:center; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); margin: 0 0 12px; letter-spacing: -1px; }
.hero p { font-size: clamp(18px, 2vw, 20px); margin: 0 0 22px; }

.cta-row { display:flex; gap:12px; flex-wrap:wrap; }
.btn { border:none; cursor:pointer; padding:14px 18px; border-radius:14px; font-weight:800; font-size:16px; }
.btn-primary { background: var(--white); color: var(--black); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid var(--white); }

.hero-card {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 18px; border-radius: 18px;
}
.hero-card img { width: 100%; border-radius: 14px; display:block; }

section h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 14px; letter-spacing:-.5px; }
section p.lead { margin: 0 0 22px; }
section.container{
  background: radial-gradient(1000px 500px at 20% -10%, rgb(255 255 255 / 0%), transparent 60%),
              radial-gradient(800px 400px at 90% 10%, rgb(255 255 255 / 26%), #00000000 60%);
  border-radius: 50px;
  padding: 18px
}

.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px; overflow:hidden;
}
.card img { width:100%; height: 400px; object-fit: cover; display:block; }
.card .content { padding: 14px; }
.tag { font-size: 12px; font-weight: 800; color: var(--black); background: var(--white); padding: 4px 8px; border-radius: 6px; }

.steps { display:grid; gap: 8px; }
.step { display:flex; gap:12px; align-items:flex-start; background: rgba(255,255,255,.12); padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.25); }
.step .dot { width:14px; height:14px; border-radius:999px; background: var(--red); margin-top:6px; flex:0 0 14px; }

footer { margin-top: 64px; padding: 28px 0; border-top:1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.95); }
.tiny { font-size: 12px; opacity:.95; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .brand img { height: 34px; }
}



