     
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --blue: #1f6f8b;
  --gold: #dfbc00;
  --green: #25ad2a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff9e9;
  color: #16241C;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}

section { padding: 70px 0; }

ol, ul {
  list-style: none;
  padding-inline-start: 0px;
}

ol li {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-top: 16px;
  background-color: #fff;
}
ol li span {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  border-radius: 9999px;
  background-color: var(--blue);
}

 /* ---------- Reveal on scroll ---------- */
.reveal-up {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-up.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.08s; }
.reveal-delay-2 { transition-delay:.16s; }
.reveal-delay-3 { transition-delay:.24s; }

.reveal-right {
  opacity:0;
  transform:translateX(-28px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-right.is-visible { opacity:1; transform:translateY(0); }

.reveal-left {
  opacity:0;
  transform:translateX(28px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal-left.is-visible { opacity:1; transform:translateY(0); }

.hero {
  position: relative;
  z-index: 1;
  padding: 90px 0 90px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.05;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  
}

.title {
  font-size: 36px;
  margin-top: 12px;
  margin-bottom: 30px;
  color: #36454f;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.grand-title {
  font-size: 48px;
  font-weight: bold;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 600;
}

p.lede {
  margin-top: 20px;
  font-size: 18px;
}
.description {
  max-width: 600px;
  margin: auto;
}

.text-gray { color: #4b5563}

.subtext {
  color: #4b5563;
  font-size: 12px;
}

.center {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid-content {
  padding: 12px 32px 4px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button {
  cursor: pointer;
}

.btn-primary {
  background: #ae4a28;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 6px;
  transition: transform .15s, background .15s;
}

.btn-primary:hover{
  background:#7C3319;
  transform:translateY(-1px);
}

.btn-secondary {
  background: none;
  border: 1px solid #26301f4d;
  color: #26301f;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 6px;
  transition: background .15s;
}

.btn-secondary:hover{ background:#EAE0CB; }

.step .n {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #AE4A28;
  border: 1px solid #AE4A28;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.wcard {
  background: #fbf7ec;
  border: 1px solid #26301f29;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
}

.invit-action {
  background:#EAE0CB;
  border-radius:10px;
  padding:36px;
  margin-bottom: 42px;
}

footer {
  border-top: 1px solid #26301f4d;
  padding: 56px 0 40px;
  color: #9ca3af;
  background-color: #36454f;
  font-size: 12px;
}

@media (min-width: 300px) {
  button {
    margin-bottom: 12px;
  }
  .hero {
    padding: 50px 0 90px;
  }
  .title-div,.hero-action {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .title {
    font-size: 32px;
    margin-top: 12px;
    margin-bottom: 30px;
    color: #36454f;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
}

@media (min-width: 780px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}