*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img, .icon {
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header > * + * {
  margin-top: 1rem;
}

.section-header--light .section-title {
  color: #fff;
}
.section-header--light .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111827;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-sub-subtitle {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid;
}
.badge .icon {
  width: 0.75rem;
  height: 0.75rem;
}
.badge--green {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.badge--amber {
  color: #b45309;
  background: #fffbeb;
  border-color: #fde68a;
}
.badge--soon {
  color: #7c3aed;
  background: #fff;
  border-color: #ddd6fe;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.badge--soon .icon {
  width: 0.5625rem;
  height: 0.5625rem;
}

.pulse-dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.coming-soon-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #ecfdf5 0%, #fff 48%, #fffbeb 100%);
}

.coming-soon {
  min-height: 100vh;
  width: min(100% - 3rem, 70rem);
  margin: 0 auto;
  padding: 2rem 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.coming-soon__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
}

.coming-soon__brand .nav__logo-icon .icon {
  width: 0.875rem;
  height: 0.875rem;
  filter: brightness(0) invert(1);
}

.coming-soon__content {
  max-width: 40rem;
  align-self: center;
  padding: 4rem 0 2rem;
}
.coming-soon__content > * + * {
  margin-top: 1.5rem;
}
.coming-soon__content h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: #111827;
}
.coming-soon__content p {
  max-width: 33rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4b5563;
}

.coming-soon__preview {
  width: min(100%, 38rem);
  justify-self: end;
  margin-top: -2rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(6, 78, 59, 0.12);
}
.coming-soon__preview img {
  width: 100%;
}

.coming-soon__preview-bar {
  display: flex;
  gap: 0.375rem;
  padding: 0.125rem 0 0.875rem;
}
.coming-soon__preview-bar span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #e5e7eb;
}
.coming-soon__preview-bar span:first-child {
  background: #f87171;
}
.coming-soon__preview-bar span:nth-child(2) {
  background: #fbbf24;
}
.coming-soon__preview-bar span:last-child {
  background: #34d399;
}

.coming-soon__footer {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
}

.security-page {
  background: #fff;
}

.security-nav {
  border-bottom: 1px solid #f3f4f6;
  background: rgba(255, 255, 255, 0.92);
}
.security-nav__inner {
  width: min(100% - 3rem, 1280px);
  height: 4.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.security-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.security-nav__brand .nav__logo-icon .icon {
  width: 0.875rem;
  height: 0.875rem;
  filter: brightness(0) invert(1);
}
.security-nav__back {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
}
.security-nav__back:hover {
  color: #059669;
}

.security-hero {
  padding: 7rem 0 5.5rem;
  background: linear-gradient(145deg, #ecfdf5 0%, #fff 65%);
}
.security-hero .badge {
  margin-bottom: 1.5rem;
}
.security-hero h1 {
  max-width: 48rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  color: #111827;
}
.security-hero p {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4b5563;
}

.security-principles {
  padding: 5rem 0;
}
.security-principles__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .security-principles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.security-principles article {
  padding: 1.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.security-principles article .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}
.security-principles article h2 {
  font-size: 1.0625rem;
  color: #111827;
  margin-bottom: 0.625rem;
}
.security-principles article p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #6b7280;
}

.security-plan {
  padding: 5.5rem 0;
  background: #f9fafb;
}
.security-plan__layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .security-plan__layout {
    grid-template-columns: minmax(16rem, 0.8fr) 1.2fr;
    gap: 6rem;
  }
}
.security-plan__intro h2 {
  margin-top: 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111827;
}
.security-plan__intro p {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6b7280;
}
.security-plan__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
}
.security-plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.security-plan__list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
}
.security-plan__list li > span {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d1fae5;
  color: #047857;
  font-size: 0.6875rem;
  font-weight: 700;
}
.security-plan__list h3 {
  font-size: 0.9375rem;
  color: #1f2937;
  margin: 0.25rem 0 0.375rem;
}
.security-plan__list p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #6b7280;
}

.security-commitment {
  padding: 6rem 0;
  background: #064e3b;
  text-align: center;
}
.security-commitment h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
}
.security-commitment p {
  max-width: 42rem;
  margin: 1.25rem auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.security-footer {
  padding: 1.5rem 0;
  background: #111827;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.resource-page {
  background: #fff;
}

.resource-nav {
  border-bottom: 1px solid #f3f4f6;
  background: rgba(255, 255, 255, 0.94);
}
.resource-nav__inner {
  width: min(100% - 3rem, 1280px);
  min-height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resource-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}
.resource-nav__brand img {
  width: 2.5rem;
  height: 2.5rem;
}
.resource-nav__brand b {
  color: #047857;
  font-size: 0.7em;
}
.resource-nav__back {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
}
.resource-nav__back:hover {
  color: #059669;
}
.resource-nav__resources {
  margin-left: auto;
  margin-right: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #047857;
}
.resource-nav__resources:hover {
  color: #059669;
}

.resource-hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(145deg, #ecfdf5 0%, #fff 68%);
}
.resource-hero h1 {
  max-width: 50rem;
  margin-top: 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  color: #111827;
}
.resource-hero p {
  max-width: 43rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4b5563;
}
.resource-hero--article {
  background: linear-gradient(145deg, #fffbeb 0%, #fff 68%);
}

.resource-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857;
}

.resource-byline {
  font-size: 0.8125rem !important;
  color: #6b7280 !important;
}

.resource-library {
  padding: 5rem 0 6rem;
}
.resource-library__section + .resource-library__section {
  margin-top: 5rem;
}
.resource-library__section > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.resource-library__section > div:first-child h2 {
  margin-top: 0.5rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111827;
}
.resource-library__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .resource-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .resource-library__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.resource-library__card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.resource-library__card:hover {
  border-color: #34d399;
  box-shadow: 0 10px 24px rgba(6, 78, 59, 0.08);
  transform: translateY(-2px);
}
.resource-library__card .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 2rem;
}
.resource-library__card h3 {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #1f2937;
}
.resource-library__card p {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #6b7280;
}
.resource-library__card span {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #047857;
}

.faq-list {
  padding: 5rem 0;
}
.faq-list .container {
  max-width: 52rem;
}
.faq-list details {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid #e5e7eb;
}
.faq-list details summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}
.faq-list details p {
  max-width: 43rem;
  margin: 1rem 1.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6b7280;
}
.faq-list details a {
  color: #047857;
  text-decoration: underline;
}

.article-layout {
  display: grid;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 12rem minmax(0, 42rem);
    justify-content: center;
    gap: 5rem;
  }
}

.article-toc {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
@media (min-width: 1024px) {
  .article-toc {
    align-self: start;
    position: sticky;
    top: 1.5rem;
  }
}
.article-toc strong {
  color: #1f2937;
}
.article-toc a:hover {
  color: #047857;
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.article-content h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1rem;
}
.article-content h3 {
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.375rem;
}
.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}
.article-content p + p {
  margin-top: 1rem;
}
.article-content ol {
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}
.article-content li {
  padding-left: 0.5rem;
  margin-bottom: 1.25rem;
}

.about-content {
  padding: 5.5rem 0;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    gap: 6rem;
  }
}
.about-content h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1.25rem;
}
.about-content > div > p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}
.about-content > div > p + p {
  margin-top: 1rem;
}

.about-principles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-principles article {
  padding: 1.25rem;
  border-left: 3px solid #34d399;
  background: #ecfdf5;
}
.about-principles h3 {
  font-size: 0.9375rem;
  color: #1f2937;
  margin-bottom: 0.375rem;
}
.about-principles p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #4b5563;
}

.resource-cta {
  padding: 5rem 0;
  background: #064e3b;
  text-align: center;
}
.resource-cta h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
}
.resource-cta p {
  margin: 0.75rem 0 1.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.resource-footer {
  padding: 1.5rem 0;
  background: #111827;
}
.resource-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.resource-footer a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.resource-footer a:hover {
  color: #fff;
}

@media (max-width: 639px) {
  .coming-soon {
    width: min(100% - 2rem, 70rem);
  }
  .coming-soon__preview {
    margin-top: 1rem;
  }
  .security-nav__inner {
    width: min(100% - 2rem, 1280px);
  }
  .resource-nav__inner {
    width: min(100% - 2rem, 1280px);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn__icon {
  width: 0.9375rem;
  height: 0.9375rem;
}
.btn--primary {
  background: #10b981;
  color: #fff;
}
.btn--primary .icon {
  filter: brightness(0) invert(1);
}
.btn--primary:hover {
  background: #059669;
}
.btn--outline {
  background: transparent;
  color: #374151;
  border-color: #e5e7eb;
}
.btn--outline:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}
.btn--outline-dark {
  background: transparent;
  color: #374151;
  border-color: #e5e7eb;
  border-width: 2px;
}
.btn--outline-dark:hover {
  border-color: #d1d5db;
}
.btn--white {
  background: #fff;
  color: #059669;
}
.btn--white:hover {
  background: #ecfdf5;
}
.btn--dark {
  background: #111827;
  color: #fff;
}
.btn--dark:hover {
  background: #1f2937;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}
.btn--lg {
  padding: 0.875rem 2rem;
}
.btn--block {
  width: 100%;
  justify-content: center;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-icon .icon {
  width: 100%;
  height: 100%;
}
.nav__logo-icon--sm {
  width: 3.5rem;
  height: 3.5rem;
}
.nav__logo-icon--sm .icon {
  width: 100%;
  height: 100%;
}
.nav__brand-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}
.nav__brand-name b {
  color: #047857;
  font-size: 0.7em;
}
.nav__brand-badge {
  font-size: 0.625rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.nav__links {
  display: none;
}
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
  .nav__links a:not(.btn) {
    font-size: 0.875rem;
    color: #4b5563;
  }
  .nav__links a:not(.btn):hover {
    color: #111827;
  }
}
.nav__menu-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
}
.nav__menu-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.nav__menu-btn:hover {
  background: #f3f4f6;
}
@media (min-width: 1024px) {
  .nav__menu-btn {
    display: none;
  }
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.nav__mobile.is-open {
  display: flex;
}
.nav__mobile-link {
  font-size: 0.875rem;
  color: #374151;
}
.nav__mobile-link:hover {
  color: #111827;
}

.hero {
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.hero__inner {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1.05fr;
  }
}
.hero__copy > * + * {
  margin-top: 1.5rem;
}
.hero__heading {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  color: #111827;
  margin-top: 1.75rem;
}
.hero__heading strong {
  font-weight: 700;
}
.hero__body {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 31rem;
}
.hero__body strong {
  color: #374151;
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
  margin-top: 3rem;
}
.hero__stat-val {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.mockup {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.mockup__dots {
  display: flex;
  gap: 0.375rem;
}
.mockup__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}
.mockup__dot--red {
  background: #f87171;
}
.mockup__dot--yellow {
  background: #fbbf24;
}
.mockup__dot--green {
  background: #34d399;
}
.mockup__url-bar {
  flex: 1;
  max-width: 11.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  height: 1.25rem;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  gap: 0.375rem;
}
.mockup__url-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}
.mockup__url-text {
  flex: 1;
  height: 0.375rem;
  background: #e5e7eb;
  border-radius: 999px;
}
.mockup__appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}
.mockup__app-brand {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.mockup__app-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background: #10b981;
  flex-shrink: 0;
}
.mockup__app-name {
  font-size: 0.625rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
}
.mockup__app-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mockup__app-nav span {
  width: 2.5rem;
  height: 0.375rem;
  background: #e5e7eb;
  border-radius: 999px;
}
.mockup__app-avatar {
  width: 1.25rem !important;
  height: 1.25rem !important;
  border-radius: 50% !important;
  background: #d1fae5 !important;
  border: 1px solid #a7f3d0;
}
.mockup__canvas {
  background: #f7f9fb;
  padding: 1.25rem;
}
.mockup__canvas .icon {
  width: 100%;
  overflow: visible;
}
.mockup__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.mockup__toolbar-btns {
  display: flex;
  gap: 0.25rem;
}
.mockup__toolbar-btns button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-size: 0.625rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup__toolbar-btns button:hover {
  background: #f9fafb;
}
.mockup__toolbar-info {
  font-size: 0.5625rem;
  color: #9ca3af;
  letter-spacing: -0.01em;
}

.value-props {
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: rgba(249, 250, 251, 0.6);
  padding: 3.5rem 0;
}
.value-props__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .value-props__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.value-prop__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-prop__icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.value-prop__icon--green {
  background: #ecfdf5;
  color: #059669;
}
.value-prop__icon--green .icon {
  stroke: #059669;
}
.value-prop__icon--amber {
  background: #fffbeb;
  color: #d97706;
}
.value-prop__icon--amber .icon {
  stroke: #d97706;
}
.value-prop__icon--violet {
  background: #f5f3ff;
  color: #7c3aed;
}
.value-prop__icon--violet .icon {
  stroke: #7c3aed;
}
.value-prop__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}
.value-prop__body {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

.resource-callout {
  padding: 5.5rem 0;
  background: #064e3b;
}
.resource-callout__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .resource-callout__inner {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: 6rem;
  }
}
.resource-callout__copy h2 {
  max-width: 35rem;
  margin-top: 0.75rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}
.resource-callout__copy p {
  max-width: 34rem;
  margin: 1.25rem 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
.resource-callout__copy .resource-kicker {
  color: #34d399;
}
.resource-callout__links {
  display: flex;
  flex-direction: column;
}
.resource-callout__links a {
  display: grid;
  grid-template-columns: 4.5rem 1fr 1rem;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.resource-callout__links a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.resource-callout__links a:hover {
  color: #a7f3d0;
}
.resource-callout__links a span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
}
.resource-callout__links a strong {
  font-size: 0.9375rem;
}
.resource-callout__links a .icon {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.features {
  padding: 6rem 0;
}
.features__current {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .features__current {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__current {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.features__divider span {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8b5cf6;
  white-space: nowrap;
}
.features__divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #ede9fe;
}
.features__soon {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .features__soon {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.feature-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card__icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.feature-card__icon--green {
  background: #ecfdf5;
}
.feature-card__icon--green .icon {
  stroke: #059669;
}
.feature-card__icon--violet {
  background: #f5f3ff;
}
.feature-card__icon--violet .icon {
  stroke: #7c3aed;
}
.feature-card__icon--blue {
  background: #eff6ff;
}
.feature-card__icon--blue .icon {
  stroke: #2563eb;
}
.feature-card__icon--amber {
  background: #fffbeb;
}
.feature-card__icon--amber .icon {
  stroke: #d97706;
}
.feature-card__icon--violet-soft {
  background: #ede9fe;
}
.feature-card__icon--violet-soft .icon {
  stroke: #8b5cf6;
}
.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}
.feature-card--soon {
  position: relative;
  border-style: dashed;
  border-color: #ddd6fe;
  background: rgba(245, 243, 255, 0.3);
}
.feature-card--soon h3 {
  color: #374151;
}
.feature-card--soon p {
  color: #9ca3af;
}

.flat-fee-band {
  background: #10b981;
  padding: 3rem 0;
}
.flat-fee-band__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .flat-fee-band__inner {
    grid-template-columns: 1fr auto;
  }
}
.flat-fee-band__eyebrow {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.flat-fee-band__heading {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.flat-fee-band__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 38rem;
}

.cost-compare {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  min-width: 18rem;
}
.cost-compare__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.cost-compare__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}
.cost-compare__item {
  text-align: center;
}
.cost-compare__price {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.cost-compare__name {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.cost-compare__vs {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  padding-bottom: 0.5rem;
}
.cost-compare__item--struck {
  opacity: 0.6;
}
.cost-compare__item--struck .cost-compare__price {
  text-decoration: line-through;
}
.cost-compare__pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.compare {
  padding: 6rem 0;
  background: rgba(249, 250, 251, 0.7);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.compare__table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.compare__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-left: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.compare__source {
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-left: auto;
  display: none;
}
@media (min-width: 1024px) {
  .compare__source {
    display: inline;
  }
}

.compare-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
}
.compare-table thead tr {
  border-bottom: 1px solid #f3f4f6;
}
.compare-table th {
  padding: 1.25rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  vertical-align: middle;
}
.compare-table th:first-child {
  text-align: left;
  color: #9ca3af;
  width: 34%;
}
.compare-table th:not(:first-child):not(.compare-table__bw-col) {
  text-align: center;
}
.compare-table th:not(:first-child):not(.compare-table__bw-col) strong {
  display: block;
  color: #374151;
  font-weight: 600;
}
.compare-table th:not(:first-child):not(.compare-table__bw-col) span {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 400;
  margin-top: 0.125rem;
}
.compare-table__bw-col {
  padding: 0.75rem 1.25rem !important;
}
.compare-table__label-col {
  padding: 1.25rem 1.5rem !important;
}
.compare-table tbody td {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  padding-left: 1.5rem;
}
.compare-table tbody td:not(:first-child) {
  text-align: center;
}
.compare-table tbody tr.alt td {
  background: rgba(249, 250, 251, 0.6);
}
.compare-table tbody .bw-col {
  background: rgba(236, 253, 245, 0.5);
  border-left: 2px solid rgba(167, 243, 208, 0.6);
  border-right: 2px solid rgba(167, 243, 208, 0.6);
}
.compare-table__cost-row {
  border-top: 2px solid #e5e7eb !important;
}
.compare-table__cost-row td {
  background: rgba(249, 250, 251, 0.8);
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.compare-table__cost-row td:first-child strong {
  display: block;
  font-size: 0.875rem;
  color: #111827;
}
.compare-table__cost-row td:first-child span {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}
.compare-table__cost-row td:not(:first-child) strong {
  display: block;
  font-size: 0.875rem;
  color: #4b5563;
}
.compare-table__cost-row td:not(:first-child) span {
  display: block;
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}
.compare-table__cost-row td.bw-col strong {
  display: block;
}

.bw-header {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #10b981;
  color: #fff;
  border-radius: 12px;
  padding: 0.625rem 1rem;
}
.bw-header__product {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-bottom: 0.125rem;
}
.bw-header__price {
  font-size: 0.875rem;
  font-weight: 700;
}
.bw-header__note {
  font-size: 0.5625rem;
  opacity: 0.65;
  margin-top: 0.125rem;
}

.cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  vertical-align: middle;
}
.cell .icon {
  width: 0.8125rem;
  height: 0.8125rem;
}
.cell--full {
  background: #ecfdf5;
}
.cell--full .icon {
  stroke: #059669;
}
.cell--none {
  background: #f3f4f6;
}
.cell--none .icon {
  stroke: #9ca3af;
}
.cell--partial {
  background: #fffbeb;
  color: #d97706;
  font-size: 0.625rem;
  font-weight: 700;
}
.cell--soon {
  width: auto;
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
  gap: 0.25rem;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  font-size: 0.625rem;
  font-weight: 700;
  color: #7c3aed;
}
.cell--soon .icon {
  width: 0.5625rem;
  height: 0.5625rem;
  stroke: #7c3aed;
}

.price-highlight {
  color: #059669 !important;
  font-size: 1rem !important;
  display: block;
}

.pricing {
  padding: 6rem 0;
}
.pricing__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}
.pricing__footnote {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 2rem;
}

.billing-toggle {
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 0.25rem;
  margin-top: 2rem;
}
.billing-toggle__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.15s;
}
.billing-toggle__btn:hover {
  color: #374151;
}
.billing-toggle__btn.active {
  background: #fff;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.billing-toggle__save {
  font-size: 0.625rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
}

.plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card__popular {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #78350f;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.plan-card__tier {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}
.plan-card__price-free {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
  display: block;
}
.plan-card__price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}
.plan-card__price {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
}
.plan-card__price::before {
  content: "$";
}
.plan-card__price-unit {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.375rem;
}
.plan-card__billing {
  display: block;
  min-height: 1rem;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: #9ca3af;
}
.plan-card__seats {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  margin-top: 0.375rem;
  margin-bottom: 0.5rem;
}
.plan-card__tagline {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  margin-bottom: 0.5rem;
}
.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}
.plan-card__features li .icon {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  stroke: #10b981;
}
.plan-card__soon-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}
.plan-card__soon-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  margin-bottom: 0.625rem;
}
.plan-card__soon-label .icon {
  width: 0.5625rem;
  height: 0.5625rem;
  stroke: #a78bfa;
}
.plan-card__soon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan-card__soon-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #8b5cf6;
}
.plan-card__soon-list li .icon {
  width: 0.8125rem;
  height: 0.8125rem;
  flex-shrink: 0;
  stroke: #a78bfa;
}
.plan-card .btn {
  margin-top: 1.5rem;
}
.plan-card--highlighted {
  background: #10b981;
  border-color: transparent;
  box-shadow: 0 20px 40px -8px rgba(16, 185, 129, 0.4);
}
@media (min-width: 1024px) {
  .plan-card--highlighted {
    transform: scale(1.04);
  }
}
.plan-card--highlighted .plan-card__tier {
  color: rgba(255, 255, 255, 0.65);
}
.plan-card--highlighted .plan-card__price {
  color: #fff;
}
.plan-card--highlighted .plan-card__price-free {
  color: #fff;
}
.plan-card--highlighted .plan-card__price-unit {
  color: rgba(255, 255, 255, 0.65);
}
.plan-card--highlighted .plan-card__seats {
  color: rgba(255, 255, 255, 0.8);
}
.plan-card--highlighted .plan-card__tagline {
  color: rgba(255, 255, 255, 0.7);
}
.plan-card--highlighted .plan-card__features li {
  color: #fff;
}
.plan-card--highlighted .plan-card__features li .icon {
  stroke: rgba(255, 255, 255, 0.7);
}
.plan-card--highlighted .plan-card__soon-section {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.plan-card--highlighted .plan-card__soon-label {
  color: rgba(255, 255, 255, 0.6);
}
.plan-card--highlighted .plan-card__soon-label .icon {
  stroke: rgba(255, 255, 255, 0.5);
}
.plan-card--highlighted .plan-card__soon-list li {
  color: rgba(255, 255, 255, 0.75);
}
.plan-card--highlighted .plan-card__soon-list li .icon {
  stroke: rgba(255, 255, 255, 0.5);
}

.how-it-works {
  background: #064e3b;
  padding: 6rem 0;
}
.how-it-works .section-header {
  margin-bottom: 4rem;
}

.steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.steps {
  position: relative;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: background 0.15s;
}
.step:hover {
  background: rgba(255, 255, 255, 0.13);
}
.step__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.step__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__icon .icon {
  width: 1.125rem;
  height: 1.125rem;
  filter: brightness(0) invert(1);
}
.step__number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  user-select: none;
}
.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.step__body {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.cta-section {
  padding: 7rem 0;
  text-align: center;
}
.cta-section > .container > * + * {
  margin-top: 1.5rem;
}
.cta-section__heading {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #111827;
}
.cta-section__body {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0 auto;
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.footer {
  border-top: 1px solid #f3f4f6;
  background: rgba(249, 250, 251, 0.5);
  padding: 3.5rem 0;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 2rem;
  }
}
.footer__tagline {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  max-width: 16rem;
  margin-top: 1rem;
}
.footer__col h4 {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__col ul a {
  font-size: 0.875rem;
  color: #6b7280;
}
.footer__col ul a:hover {
  color: #111827;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom p {
  font-size: 0.75rem;
  color: #9ca3af;
}

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