:root{
  --emerald: #0E6F57;
  --emerald2: #0b4f3e;
  --gold: #D9B56C;

  --bg: #f6faf8;
  --paper: #ffffff;
  --ink: #0b1220;
  --muted: rgba(11,18,32,.68);
  --line: rgba(15, 23, 42, 0.10);

  --shadow: 0 20px 60px rgba(2, 6, 23, 0.10);
  --shadowSoft: 0 12px 30px rgba(2, 6, 23, 0.08);

  --r: 18px;
  --r2: 22px;

  --topbar-h: 72px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(14,111,87,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(217,181,108,.12), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--bg));
}

.container{
  width:min(1120px, 100%);
  margin:0 auto;
  padding: 28px;
}

/* Header */
.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--topbar-h);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.topbar__inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: .2px;
}

.brand__mark{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  box-shadow: 0 10px 20px rgba(14,111,87,.18);
}

.brand__text{ font-size: 18px; }

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

.nav a{
  text-decoration:none;
  color: rgba(11,18,32,.78);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 11px;
  border-radius: 12px;
}

.nav a:hover{
  background: rgba(14,111,87,.08);
  color: var(--emerald);
}

.nav__cta{
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  color: #fff !important;
  padding: 10px 12px !important;
  box-shadow: 0 14px 26px rgba(14,111,87,.16);
  border: 1px solid rgba(14,111,87,.16);
}

.nav__cta:hover{ filter: brightness(1.03); }

.nav__cta--mobile{
  display:none;
  text-decoration:none;
}

/* Hero */
.hero{
  position: relative;
  padding: 42px 0 8px;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 12px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(11,18,32,.70);
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
}

.hero h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1.06;
  letter-spacing: .1px;
}

.accent{
  background: linear-gradient(90deg, var(--emerald), var(--emerald2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.lead{
  margin: 0 0 18px;
  max-width: 70ch;
  color: rgba(11,18,32,.74);
  line-height: 1.75;
  font-size: 16px;
}

.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.btn{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid var(--line);
  box-shadow: var(--shadowSoft);
}

.btn--primary{
  background: linear-gradient(135deg, var(--emerald), var(--emerald2));
  color: #fff;
  border-color: rgba(14,111,87,.18);
}

.btn--primary:hover{ filter: brightness(1.03); }

.btn--ghost{
  background: rgba(255,255,255,.85);
  color: var(--ink);
}

.btn--ghost:hover{
  border-color: rgba(14,111,87,.22);
  color: var(--emerald);
}

.trustRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}

.trustPill{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadowSoft);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 13px;
  color: rgba(11,18,32,.78);
}

.subnote{
  margin: 12px 0 0;
  color: rgba(11,18,32,.55);
  font-weight: 650;
  font-size: 13px;
}

/* Hero visual (fake UI) */
.hero__visual{
  position: relative;
  display:flex;
  align-items: stretch;
}

.glassCard{
  width: 100%;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
}

.glassCard__top{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background:
    radial-gradient(500px 250px at 20% 0%, rgba(14,111,87,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.65));
}

.avatar{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14,111,87,.20), rgba(217,181,108,.22));
  border: 1px solid rgba(0,0,0,.06);
}

.lines{
  flex: 1;
  display:grid;
  gap: 6px;
}

.line{
  height: 8px;
  border-radius: 999px;
  background: rgba(11,18,32,.10);
}

.line--w80{ width: 80%; }
.line--w55{ width: 55%; }

.badgeMini{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14,111,87,.10);
  color: var(--emerald);
  border: 1px solid rgba(14,111,87,.18);
}

.glassCard__body{
  padding: 14px;
}

.chipRow{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chip{
  font-weight: 900;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,0,0,.06);
  color: rgba(11,18,32,.78);
}

.bubble{
  max-width: 90%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadowSoft);
  margin: 10px 0;
  line-height: 1.5;
  font-weight: 650;
  font-size: 13px;
}

.bubble--left{
  background: rgba(14,111,87,.06);
  color: rgba(11,18,32,.82);
}

.bubble--right{
  margin-left: auto;
  background: rgba(217,181,108,.12);
  color: rgba(11,18,32,.82);
}

.hint{
  margin-top: 10px;
  color: rgba(11,18,32,.55);
  font-weight: 750;
  font-size: 12px;
}

.halo{
  position:absolute;
  inset: -40px -40px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(14,111,87,.18), transparent 60%);
  filter: blur(6px);
  pointer-events:none;
}

/* Section layout */
.section{
  padding: 14px 0 44px;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card--soft{
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(14,111,87,.10), transparent 60%),
    rgba(255,255,255,.92);
}

.kicker{
  display:inline-flex;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  background: rgba(14,111,87,.08);
  border: 1px solid rgba(14,111,87,.14);
  padding: 7px 10px;
  border-radius: 999px;
}

.card h2{
  margin: 10px 0 10px;
  font-size: 20px;
  letter-spacing: .1px;
}

.card p{
  margin: 0 0 12px;
  color: rgba(11,18,32,.78);
  line-height: 1.7;
}

.checkList{
  list-style:none;
  margin: 12px 0 0;
  padding: 0;
  display:grid;
  gap: 10px;
}

.checkList li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: rgba(11,18,32,.78);
  line-height: 1.6;
  font-weight: 700;
}

.check{
  width: 18px;
  height: 18px;
  border-radius: 7px;
  display:grid;
  place-items:center;
  background: rgba(14,111,87,.10);
  border: 1px solid rgba(14,111,87,.14);
  color: var(--emerald);
  font-weight: 950;
  margin-top: 2px;
}

.sectionHead{
  margin: 22px 0 12px;
}

.sectionHead h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: .1px;
}

.sectionHead p{
  margin: 0;
  color: rgba(11,18,32,.62);
  line-height: 1.6;
  font-weight: 650;
}

/* Feature grid */
.featureGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.feature{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r2);
  box-shadow: var(--shadowSoft);
  padding: 16px;
}

.feature h3{
  margin: 10px 0 8px;
  font-size: 16px;
}

.feature p{
  margin: 0;
  color: rgba(11,18,32,.68);
  line-height: 1.65;
  font-weight: 650;
}

.icon{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 950;
  background: rgba(14,111,87,.10);
  border: 1px solid rgba(14,111,87,.14);
  color: var(--emerald);
}

.feature--cta{
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(217,181,108,.16), transparent 60%),
    rgba(255,255,255,.92);
  border: 1px solid rgba(217,181,108,.20);
}

.miniActions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Safety grid */
.safetyGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.safety{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r2);
  box-shadow: var(--shadowSoft);
  padding: 16px;
}

.safety__icon{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(14,111,87,.10);
  border: 1px solid rgba(14,111,87,.14);
}

.safety h3{
  margin: 10px 0 8px;
  font-size: 16px;
}

.safety p{
  margin: 0;
  color: rgba(11,18,32,.68);
  line-height: 1.65;
  font-weight: 650;
}

/* Support card */
.supportCard{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-top: 14px;
}

.supportLabel{
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(11,18,32,.55);
}

.supportEmail{
  display:inline-block;
  margin-top: 6px;
  font-weight: 950;
  color: var(--emerald);
  text-decoration:none;
}

.supportEmail:hover{ text-decoration: underline; }

.supportHint{
  margin-top: 6px;
  color: rgba(11,18,32,.58);
  font-weight: 650;
  font-size: 13px;
}

/* Legal section */
.legal{
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(14,111,87,.05));
  padding: 30px 0 50px;
}

.legalHead h2{
  margin: 0 0 8px;
  font-size: 24px;
}

.legalHead p{
  margin: 0 0 16px;
  color: rgba(11,18,32,.62);
  line-height: 1.7;
  font-weight: 650;
}

.legalCard{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 14px 0;
}

.legalCard--accent{
  border: 1px solid rgba(217,181,108,.26);
  background:
    radial-gradient(800px 320px at 20% 0%, rgba(217,181,108,.14), transparent 60%),
    rgba(255,255,255,.96);
}

.legalCard h3{
  margin: 16px 0 8px;
  font-size: 16px;
}

.legalCard h2{
  margin: 0 0 10px;
  font-size: 22px;
}

.legalCard p{
  margin: 0 0 12px;
  color: rgba(11,18,32,.78);
  line-height: 1.7;
}

.bullets{
  margin: 8px 0 12px;
  padding-left: 18px;
  line-height: 1.75;
  color: rgba(11,18,32,.74);
}
.bullets li{ margin: 7px 0; }

.inlineContact{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(14,111,87,.06);
}

.inlineLabel{
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(11,18,32,.55);
}

.notice{
  border: 1px solid rgba(217,181,108,.26);
  background: rgba(217,181,108,.14);
  border-radius: 16px;
  padding: 14px;
  margin: 12px 0;
}

.notice__title{
  font-weight: 950;
  margin-bottom: 8px;
}

.muted{ color: rgba(11,18,32,.62); }

.tagHint{
  margin-top: 12px;
  color: rgba(11,18,32,.62);
  font-weight: 750;
}

code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  background: rgba(11,18,32,.06);
  padding: 2px 6px;
  border-radius: 8px;
}

/* Footer */
.footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 2px 8px;
  color: rgba(11,18,32,.65);
}

.footerLinks a{
  color: rgba(11,18,32,.75);
  text-decoration:none;
  font-weight: 850;
}
.footerLinks a:hover{ color: var(--emerald); }

/* Anchor offsets */
section[id], article[id], h2[id]{
  scroll-margin-top: calc(var(--topbar-h) + 18px);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: 340px; }
  .grid2{ grid-template-columns: 1fr; }
  .featureGrid{ grid-template-columns: 1fr 1fr; }
  .safetyGrid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .nav__cta--mobile{ display:inline-flex; }
  .container{ padding: 18px; }
  .featureGrid{ grid-template-columns: 1fr; }
  .safetyGrid{ grid-template-columns: 1fr; }
  .supportCard{ flex-direction: column; align-items: flex-start; }
}
