:root{
  --green:#59B850;
  --pink:#FE4264;
  --teal:#34B9C9;
  --yellow:#fdce00;

  --ink:#2b2b2b;
  --muted:#606060;
  --paper:#ffffff;
  --bg:#f6f7f8;

  --radius:26px;
  --shadow: 0 20px 60px rgba(0,0,0,.08);
  --line: rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a{color:inherit}
.wrap{width:min(1120px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:0;
  padding:10px 12px; border-radius:14px;
  background:var(--paper); border:1px solid var(--line);
}
.skip:focus{left:12px; top:12px; z-index:10}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(246,247,248,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topbar .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}

.brand__logo{
   width:auto; display:block;
}

.nav{display:flex; align-items:center; gap:12px; position:relative}
.nav__toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:14px;
  padding:8px 10px;
}
.nav__menu{display:flex; align-items:center; gap:14px}
.nav__menu a{
  text-decoration:none;
  color: var(--muted);
  font-weight:600;
}
.nav__menu a:hover{color:var(--ink)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:750;
}
.btn--solid{
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(254,66,100,.20);
}
.btn--solid:hover{filter: brightness(0.98)}
.btn--ghost{
  background: transparent;
  border-color: rgba(0,0,0,.14);
  color: var(--ink);
}
.btn--ghost:hover{background: rgba(0,0,0,.04)}

.hero{padding:24px 0 48px}
.frame{
  position:relative;
  background: var(--paper);
  border: 10px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__inner{
  padding: 38px 34px 34px;
  max-width: 860px;
}
.hero__kicker{
  margin:0 0 18px;
  color: var(--muted);
  font-weight:650;
}
.hero__title{
  margin:0 0 18px;
  color: var(--pink);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 74px);
  letter-spacing: .02em;
  line-height: 1.06;
}
.hero__title--wide{
  letter-spacing: .22em;
}
.hero__lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: #2a2a2a;
  max-width: 72ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px}
.hero__chips{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 18px;
}
.hero__chips span{
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  padding:8px 10px;
  font-weight:700;
  color: var(--ink);
  background: rgba(0,0,0,.02);
}


.section{padding: 54px 0}
.section--alt{background: rgba(89,184,80,.06)}
h2{margin:0 0 16px; font-size: 28px}
.muted{color: var(--muted)}
.small{font-size: 13px}

.section__head{margin-bottom: 18px}
.section__head p{margin: 6px 0 0; color: var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cards--2{grid-template-columns: repeat(2, 1fr)}
.card{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.04);
}
.card h3{margin:0 0 8px; font-size: 18px}
.card p{margin:0; color: var(--muted)}
.link{
  display:inline-block;
  margin-top: 10px;
  color: var(--teal);
  font-weight:800;
  text-decoration:none;
}
.link:hover{text-decoration:underline}

.accordion details{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  overflow:hidden;
  margin: 10px 0;
  box-shadow: 0 14px 40px rgba(0,0,0,.03);
}
.accordion summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.accordion summary::-webkit-details-marker{display:none}
.sum__title{font-weight:900}
.sum__meta{
  font-weight:900;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}
.acc__body{padding: 0 16px 16px}
.acc__eng{margin: 0 0 10px}
.acc__label{margin: 0 0 8px}
.acc__list{margin:0; padding-left: 18px; color: var(--muted)}
.acc__list li{margin: 5px 0}

.note{
  margin-top: 16px;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 14px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.note p{margin:0}

.contact{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin-top: 14px;
}
.form{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 16px;
}
label{display:block; margin-bottom: 12px; color: var(--muted); font-weight:700}
input, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  font-size: 15px;
}
.form__row{display:flex; gap:12px; align-items:center; flex-wrap:wrap}

.aside{display:grid; gap:14px}
.aside__box{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 16px;
}
.aside__box h3{margin:0 0 10px}
.aside__box ul{margin:0; padding-left: 18px; color: var(--muted)}

.footer{
  padding: 22px 0 34px;
}
.footer__inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}

@media (max-width: 960px){
  .cards{grid-template-columns: 1fr}
  .cards--2{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .hero__inner{padding: 28px 20px 120px}
  .nav__toggle{display:inline-flex}
  .nav__menu{
    display:none;
    position:absolute;
    right:0;
    top:48px;
    background: rgba(246,247,248,.98);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 18px;
    padding: 12px;
    flex-direction:column;
    align-items:flex-start;
    width: min(320px, 92vw);
  }
  .nav__menu.is-open{display:flex}
}


/* Shapes: placed in their own row (no overlap with text) */
.shapes{
  pointer-events:none;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  gap:0;
  padding: 0 10px 14px;
}
.shape{
  width: 360px;
  height: 360px;
  border-radius: 200px;
  background: transparent;
  flex: 0 0 auto;
}
.shape--teal{
  border: 38px solid var(--teal);
  transform: translate(30px, 20px);
  opacity:.90;
}
.shape--yellow{
  border: 56px solid var(--yellow);
  transform: translate(0px, 40px);
  opacity:.70;
}
.shape--pink{
  border: 46px solid var(--pink);
  transform: translate(-210px, 80px);
  opacity:.85;
}

/* Increase bottom padding a bit to breathe */
.hero__inner{ position:relative; }


/* Large hero logo */
.topbar--large{
  padding: 24px 0 10px;
  background: transparent;
  border-bottom: none;
}

.brand--hero{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 30px 0 10px;
}

.brand__logo--big{
  width: min(60vw, 720px);
  height: auto;
}

/* Remove nav overlap and place menu below */
.nav{
  justify-content:center;
  margin-top: 10px;
}

.nav__menu{
  gap: 22px;
}



/* Header should scroll away (not fixed/sticky) */
.topbar{
  position: static !important;
  top: auto !important;
  backdrop-filter: none !important;
}

