html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: #FFFBFE;
  color: #1C1B1F;
  font-family: "Nunito", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #6750A4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #4F378B;
}

.inner {
  position: relative;
  padding: 0 24px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

main {
  min-height: calc(100vh - 140px);
}

html {
  font-size: 16px;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.text * + p, .text * + ul {
  margin-top: 1rem;
}
.text * + h2 {
  margin-top: 2rem;
}
.text * + h2 ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.text * + h2 ul li + li {
  margin-top: 0.5rem;
}
.text * + h2 strong {
  font-weight: 700;
}
.text * + h2 a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 254, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #CAC4D0;
  box-shadow: 0 1px 3px rgba(28, 27, 31, 0.08);
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
header figure a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1C1B1F;
  font-weight: 700;
  font-size: 1.125rem;
}
header figure a:hover {
  color: #6750A4;
}
header figure a img {
  display: block;
  width: 36px;
  height: 36px;
}
header .menu-toggle {
  display: block;
  position: relative;
  width: 36px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  header .menu-toggle {
    display: none;
  }
}
header .menu-toggle span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #1C1B1F;
  border-radius: 2px;
  transition: all 0.3s;
}
header .menu-toggle span:nth-child(1) {
  top: 2px;
}
header .menu-toggle span:nth-child(2) {
  top: 12px;
}
header .menu-toggle span:nth-child(3) {
  top: 22px;
}
header .menu {
  display: none;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  header .menu {
    display: flex;
  }
}
header .menu a {
  display: block;
  padding: 8px 14px;
  color: #49454F;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header .menu a:hover {
  color: #6750A4;
  background: #F3EDF7;
}
header .menu li.active a {
  color: #6750A4;
  background: #EADDFF;
}
header .open .menu-toggle span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
header .open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
header .open .menu-toggle span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  header .open .menu {
    position: absolute;
    left: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px 24px 20px;
    background: rgba(255, 251, 254, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #CAC4D0;
    box-shadow: 0 4px 16px rgba(28, 27, 31, 0.12);
  }
}

footer {
  background: #1C1B1F;
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 0;
}
footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
footer nav ul a {
  color: #D0BCFF;
  font-size: 0.9375rem;
  font-weight: 600;
}
footer nav ul a:hover {
  color: #fff;
}
footer .copyright {
  font-size: 0.875rem;
}
footer .copyright a {
  color: #D0BCFF;
}
footer .copyright a:hover {
  color: #fff;
}

.hero {
  background: linear-gradient(160deg, #6750A4 0%, #4F378B 55%, #381E72 100%);
  color: #fff;
  padding: 64px 0 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero .inner {
  position: relative;
  z-index: 1;
}
.hero .hero-logo {
  display: block;
  margin: 0 auto 24px;
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}
@media (min-width: 768px) {
  .hero .hero-logo {
    width: 120px;
    height: 120px;
  }
}
.hero .hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #EADDFF;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}
.hero .hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: #EADDFF;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero .hero-tagline {
    font-size: 1.5rem;
  }
}
.hero .hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero .hero-version {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: #fff;
  color: #4F378B;
}
.btn-primary:hover {
  background: #EADDFF;
  color: #4F378B;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.features {
  padding: 72px 0;
  background: #FFFBFE;
}
.features h2 {
  text-align: center;
  font-size: 1.75rem;
  color: #1C1B1F;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .features h2 {
    font-size: 2.25rem;
  }
}
.features .features-intro {
  text-align: center;
  color: #49454F;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.0625rem;
}
.features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 480px) {
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .features .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.features .feature-card {
  background: #F3EDF7;
  border: 1px solid #CAC4D0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.features .feature-card:hover {
  box-shadow: 0 4px 16px rgba(28, 27, 31, 0.12);
  transform: translateY(-2px);
}
.features .feature-card .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #EADDFF;
  color: #6750A4;
  border-radius: 8px;
  margin-bottom: 16px;
}
.features .feature-card .feature-icon svg {
  width: 24px;
  height: 24px;
}
.features .feature-card h3 {
  font-size: 1.0625rem;
  color: #1C1B1F;
  margin-bottom: 8px;
}
.features .feature-card p {
  font-size: 0.9375rem;
  color: #49454F;
  line-height: 1.5;
}

.privacy-banner {
  padding: 56px 0;
  background: #F3EDF7;
}
.privacy-banner .privacy-banner-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.privacy-banner .privacy-banner-content h2 {
  font-size: 1.5rem;
  color: #1C1B1F;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .privacy-banner .privacy-banner-content h2 {
    font-size: 1.75rem;
  }
}
.privacy-banner .privacy-banner-content p {
  color: #49454F;
  margin-bottom: 20px;
  line-height: 1.6;
}
.privacy-banner .privacy-banner-content a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta {
  padding: 64px 0 80px;
  text-align: center;
  background: #FFFBFE;
}
.cta h2 {
  font-size: 1.75rem;
  color: #1C1B1F;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .cta h2 {
    font-size: 2rem;
  }
}
.cta p {
  color: #49454F;
  margin-bottom: 28px;
  font-size: 1.0625rem;
}
.cta .btn-primary {
  background: #6750A4;
  color: #fff;
}
.cta .btn-primary:hover {
  background: #4F378B;
  color: #fff;
}

.post {
  padding: 48px 0 72px;
  background: #FFFBFE;
}
.post .updated {
  color: #49454F;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.post h1 {
  font-size: 2rem;
  color: #1C1B1F;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .post h1 {
    font-size: 2.5rem;
  }
}
.post .text {
  max-width: 720px;
  color: #1C1B1F;
}
.post .text h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1C1B1F;
}
@media (min-width: 768px) {
  .post .text h2 {
    font-size: 1.25rem;
  }
}
.post .text p, .post .text li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #49454F;
}

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