/* My Tutor Circle — clean lavender theme */
:root{
  --text: #0f1020;
  --muted: rgba(15,16,32,.72);
  --card: #ffffff;

  /* Lavender theme */
  --lav: #6D5EF5;          /* primary */
  --lav2: #8A7CFF;         /* hover/secondary */
  --lavSoft: rgba(109,94,245,.12);

  --alt: #f6f3ff;          /* light lavender background blocks */
  --border: rgba(15,23,42,.12);
  --shadow: 0 14px 40px rgba(2,6,23,.10);
  --radius: 16px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.45;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Logo container */
.brand__mark{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #fff;
  overflow: hidden;
}

.brand__logo{
  width: 100%;
  height: 100%;
  object-fit: contain; /* use contain so your logo doesn’t get cropped */
  display: block;
}
.brand__text{
  font-size: 16px;
}

/* Nav */
.nav{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a{
  text-decoration: none;
  color: rgba(15,16,32,.86);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover{ background: rgba(15,23,42,.06); }

.nav__toggle{
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}

/* Hero */
.hero{
  background: radial-gradient(1200px 500px at 20% 0%, var(--lavSoft) 0%, rgba(255,255,255,0) 60%),
              linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  border-bottom: 1px solid var(--border);
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  padding: 54px 0 44px;
  align-items: center;
}

.pill{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lavSoft);
  color: var(--lav);
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 12px;
}

h1{
  margin: 0 0 12px;
  letter-spacing: -0.04em;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
}

h2{
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 3vw, 34px);
}

h3{
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.lead{
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 18px;
  max-width: 62ch;
}

.cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 8px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(2,6,23,.08);
  transition: transform .06s ease, filter .12s ease, background .12s ease;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--lav);
  color: #fff;
  border-color: rgba(109,94,245,.35);
}

.btn--primary:hover{ background: var(--lav2); }

.btn--ghost{
  background: #fff;
  color: rgba(15,16,32,.92);
}

.btn--ghost:hover{ filter: brightness(0.98); }

.fineprint{
  color: rgba(15,16,32,.62);
  font-size: 13px;
  margin: 10px 0 0;
}

.hero__card .card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card__row{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  font-weight: 750;
}

.card__row--muted{
  color: rgba(15,16,32,.62);
  font-weight: 650;
  font-size: 13px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.14);
}

.card__hr{
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Sections */
.section{ padding: 56px 0; }

.section--alt{
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid{ display: grid; gap: 16px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.panel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}

.panel p{ margin: 0; color: rgba(15,16,32,.72); }

.pricing{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pricecard{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.pricecard--outline{
  background: transparent;
  box-shadow: none;
}

.price{
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price span{
  font-size: 14px;
  font-weight: 800;
  color: rgba(15,16,32,.62);
  margin-left: 6px;
}

ul{
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(15,16,32,.72);
}

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

/* Forms */
.form label{
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 8px;
}

.form input, .form textarea, .form select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
}

.form input:focus, .form textarea:focus, .form select:focus{
  outline: none;
  border-color: rgba(109,94,245,.45);
  box-shadow: 0 0 0 4px rgba(109,94,245,.12);
}

.form textarea{ resize: vertical; }
.form__row{ margin-bottom: 14px; }

.form__row--2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
  color: rgba(15,16,32,.72);
}

.check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.callout{
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(109,94,245,.14), rgba(109,94,245,.06));
  border: 1px solid rgba(109,94,245,.18);
}

.callout__title{ margin: 0 0 8px; }
.callout__text{ margin: 0; }

/* Footer */
.footer{
  background: #0f1020;
  color: rgba(255,255,255,.90);
  padding: 34px 0;
}

.footer__inner{ display: grid; gap: 10px; }

.footer__links{
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer a{
  color: rgba(255,255,255,.90);
  text-decoration: none;
  font-weight: 800;
}

.footer a:hover{ text-decoration: underline; }

/* Mobile */
@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .nav{ display: none; }
  .nav__toggle{ display: inline-flex; }
  .nav.is-open{
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 12px;
  }
  .nav.is-open a{
    border: 1px solid var(--border);
    background: #fff;
  }
}