/* TimeGrid — marketing site (timegridapp.com)
   Brand reused from the app: teal #006e5b, Darker Grotesque (display) + Poppins (body). */

:root {
  --ink: #131313;
  --sub: #495057;
  --muted: #7a7a7a;
  --muted-2: #878a99;
  --teal: #006e5b;
  --teal-dark: #005a4a;
  --teal-10: rgba(0, 110, 91, 0.10);
  --bg: #ffffff;
  --soft: #f8f8fb;
  --line: #eaeaea;
  --divider: #e2e2e2;
  --footer-bg: #131313;
  --footer-link: #a9abb6;
  --display: "Darker Grotesque", "Poppins", sans-serif;
  --body: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
img { max-width: 100%; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container--narrow { max-width: 980px; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn--ghost { background: #fff; color: var(--teal); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal-10); }
.btn--white { background: #fff; color: var(--teal); border-color: #fff; }
.btn--white:hover { background: #eef5f3; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

.tick { color: var(--teal); font-weight: 700; }

.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255,255,255,.75); }

.pill {
  display: inline-block;
  background: var(--teal-10);
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark { width: 30px; height: 30px; display: block; }
.logo__word { font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--ink); letter-spacing: -.01em; }
.logo--light .logo__word { color: #fff; }
.logo--light .logo__mark { width: 28px; height: 28px; }

.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--sub); text-decoration: none; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 24px; }
.link-muted { font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.link-muted:hover { color: var(--teal); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.nav__toggle span { display: block; height: 2px; width: 18px; margin: 0 auto; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(44px, 6vw, 84px) 0 clamp(54px, 7vw, 92px); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.1vw, 62px);
  line-height: 0.98;
  letter-spacing: -.01em;
  margin-top: 20px;
}
.hero__sub { font-size: 18px; line-height: 1.62; color: var(--sub); max-width: 540px; margin-top: 18px; }
.hero .btn-row { margin-top: 28px; }
.trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 22px 0 0;
  font-size: 14px; color: var(--sub);
}
.trust li { display: flex; align-items: center; gap: 7px; }
.hero__shot {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -16px rgba(10, 46, 38, .20);
}

/* ---------- Proof strip ---------- */
.proof { background: var(--soft); padding: 32px 0; }
.proof__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; text-align: center;
}
.proof__item { display: flex; flex-direction: column; gap: 2px; }
.proof__item strong { font-weight: 700; font-size: 18px; color: var(--ink); }
.proof__item span { font-size: 14px; color: var(--muted); }
.proof__div { width: 1px; height: 38px; background: var(--divider); }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 92px) 0; }
.section--soft { background: var(--soft); }
.head { max-width: 740px; margin: 0 auto 52px; text-align: center; }
.head__title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 4vw, 46px); line-height: 1.04;
  margin-top: 14px;
}
.head__sub { font-size: 17px; line-height: 1.6; color: var(--sub); margin-top: 16px; }

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

/* ---------- Feature cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 26px;
}
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-10);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.card__title { font-size: 18px; font-weight: 600; margin-top: 16px; }
.card__text { font-size: 14.5px; line-height: 1.55; color: var(--sub); margin-top: 10px; }

/* ---------- Teal band (industries + final CTA) ---------- */
.band { background: var(--teal); color: #fff; padding: clamp(56px, 7vw, 86px) 0; }
.band__inner { display: grid; grid-template-columns: 1fr 0.62fr; gap: 64px; align-items: center; }
.band__title {
  font-family: var(--display); font-weight: 800; color: #fff;
  font-size: clamp(32px, 4vw, 46px); line-height: 1.0; margin-top: 14px;
}
.band__body { font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,.85); margin-top: 18px; }
.band__list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 12px; font-size: 15.5px;
}
.band__list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.92); }
.tick--light { color: #fff; }

.info-card {
  background: #fff; color: var(--ink);
  border-radius: 20px; padding: 30px;
  box-shadow: 0 22px 50px -12px rgba(0, 30, 24, .32);
}
.info-card__label { color: var(--teal); font-weight: 600; font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; }
.info-card__title { font-size: 19px; font-weight: 600; margin-top: 5px; }
.info-card__rule { border: none; border-top: 1px solid var(--line); margin: 18px 0; }
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; font-weight: 500; }
.check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Steps ---------- */
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); color: #fff; font-weight: 700; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.step__title { font-size: 19px; font-weight: 600; margin-top: 14px; }
.step__text { font-size: 14.5px; line-height: 1.55; color: var(--sub); margin-top: 10px; }

/* ---------- Pricing ---------- */
.plans { align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 30px; display: flex; flex-direction: column;
}
.plan--featured { border: 2px solid var(--teal); box-shadow: 0 18px 44px -14px rgba(0, 30, 24, .18); }
.plan__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.plan__name { font-size: 17px; font-weight: 600; }
.badge {
  background: var(--teal); color: #fff; font-size: 10.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px;
}
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-top: 18px; }
.plan__amt { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 4vw, 46px); line-height: 1; }
.plan__per { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan__desc { font-size: 14px; color: var(--sub); margin-top: 12px; }
.plan .btn--block { margin-top: 18px; }
.plan__rule { border: none; border-top: 1px solid var(--line); margin: 18px 0; }
.feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 26px; }
.faq__item summary {
  font-size: 16.5px; font-weight: 600; color: var(--ink); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--teal); font-size: 24px; font-weight: 600; line-height: 1; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { font-size: 14.5px; line-height: 1.62; color: var(--sub); margin-top: 10px; }
.faq__title { margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.band--cta { text-align: center; }
.cta { max-width: 780px; margin: 0 auto; }
.cta__sub { max-width: 620px; margin-left: auto; margin-right: auto; }
.cta .btn-row { margin-top: 26px; }
.cta__note { font-size: 13.5px; color: rgba(255,255,255,.72); font-weight: 500; margin-top: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: var(--footer-link); padding: 64px 0 30px; }
.footer__top { display: grid; grid-template-columns: 320px 1fr; gap: 60px; }
.footer__tag { font-size: 13.5px; line-height: 1.55; color: var(--footer-link); margin-top: 14px; max-width: 300px; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer__col h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 13px; }
.footer__col a { display: block; font-size: 14px; color: var(--footer-link); text-decoration: none; margin-bottom: 11px; }
.footer__col a:hover { color: #fff; }
.footer__rule { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 40px 0 24px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }

/* ---------- Responsive ---------- */

/* Laptop / small desktop */
@media (max-width: 1080px) {
  .band__inner { grid-template-columns: 1fr 0.72fr; gap: 44px; }
}

/* Tablet landscape */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__sub { max-width: 640px; }
  .band__inner { grid-template-columns: 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__actions .link-muted { display: none; }
  .nav__toggle { display: flex; }
  .nav--open .nav__links {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 16px clamp(20px, 4vw, 56px) 22px;
  }
}

/* Large phone */
@media (max-width: 680px) {
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .proof__div { display: none; }
  .proof__inner { gap: 22px 32px; }
  .hero__title { font-size: clamp(34px, 9vw, 48px); }
}

/* Small phone */
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn-row .btn { flex: 1 1 auto; text-align: center; }
}
