@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Lilex:ital,wght@0,100..700;1,100..700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap");
:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --ink: #1a2233;
  --ink-soft: #5b6b80;
  --brand: #2b6cff;
  --brand-dark: #1b4fd1;
  --line: #e2e8f2;
  --ok: #2e7d32;
  --warn-bg: #fff8e6;
  --warn-line: #f0d48a;
  --radius: 12px;
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lexend", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h3 {
  font-size: 1.5em;
  font-weight: 400;
}

a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow {
  max-width: 720px;
}

.nav {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 10;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: 18px;
}
.nav__logo {
  width: 26px;
  height: 26px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__links a {
  color: var(--ink-soft);
  font-size: 15px;
}
.nav__cta {
  background: var(--brand);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.nav__cta:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
}
.flash-wrap {
  max-width: var(--maxw);
  margin: 16px auto 0;
  padding: 0 20px;
}

.flash {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 8px;
}
.flash--error {
  background: #fdecea;
  color: #b3261e;
  border: 1px solid #f5c6c2;
}
.flash--message, .flash--success {
  background: #e9f6ec;
  color: var(--ok);
}

.hero {
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
  padding: 84px 0 64px;
  text-align: center;
}
.hero__title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero__cta {
  max-width: 560px;
  margin: 0 auto;
}

.section {
  padding: 111px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section__title {
  font-size: clamp(26px, 3.5vw, 36px);
  text-align: center;
  margin: 0 0 44px;
  letter-spacing: -0.01em;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
}

.shot {
  margin: 0;
  text-align: center;
}
.shot img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.shot--bordered img {
  border: 1px solid var(--line);
}
.shot figcaption {
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 10px;
}

.trust__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 16px;
}
.trust__list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-left: 4px solid var(--ok);
  padding: 16px 18px;
  color: var(--ink-soft);
}
.trust__list strong {
  color: var(--ink);
}

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 18px;
}
.faq details[open] summary::after {
  content: "–";
}
.faq details p {
  margin: 0 0 14px;
  color: var(--ink-soft);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 700;
}

.signup {
  width: 100%;
}
.signup__row {
  display: flex;
  gap: 10px;
}
.signup__input {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}
.signup__input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(43, 108, 255, 0.15);
}
.signup__micro {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 10px 2px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}
.btn--google {
  background: var(--brand);
  color: #fff;
}
.btn--google:hover {
  background: var(--brand-dark);
  text-decoration: none;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover {
  background: var(--brand-dark);
  text-decoration: none;
}
.btn--lg {
  padding: 16px 28px;
  font-size: 17px;
}
.btn__g {
  background: #fff;
  border-radius: 3px;
  padding: 2px;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .signup__row {
    flex-direction: column;
  }
}
.cta-final {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  text-align: center;
}
.cta-final__inner {
  max-width: 600px;
}
.cta-final h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  margin: 0 0 10px;
}
.cta-final p {
  color: var(--ink-soft);
  margin: 0 0 26px;
}

.getstarted__title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 10px;
}
.getstarted__lead {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0 0 40px;
}
.getstarted__back {
  margin-top: 32px;
}

.setup-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.setup-step__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  flex: 0 0 auto;
}
.setup-step__body h2 {
  margin: 4px 0 10px;
  font-size: 22px;
}
.setup-step__body p {
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.callout {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0 0 18px;
}
.callout p {
  color: #6b5a2b;
  margin: 0 0 10px;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout__action {
  font-size: 15px;
}

code {
  background: #eef2fa;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 0.9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.legal h1 {
  margin-top: 0;
}
.legal h2 {
  margin-top: 32px;
  font-size: 20px;
}
.legal__note {
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 10px 14px;
  border-radius: 8px;
}

.err {
  text-align: center;
}
.err h1 {
  font-size: 48px;
  margin: 0 0 10px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  background: var(--bg-alt);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand strong {
  font-size: 17px;
}
.footer__brand p {
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.footer__links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__links a {
  color: var(--ink-soft);
}
.footer__legal {
  margin-top: 24px;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .steps,
  .grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=styles.css.map */
