@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #002642;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #002642;
}

h1 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #c5f467;
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover {
  color: #a8d94f;
}

strong, b {
  font-weight: 600;
}

small {
  font-size: 0.875rem;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

blockquote {
  border-left: 4px solid #c5f467;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #002642;
}

code, pre {
  font-family: "JetBrains Mono", "Fira Code", Consolas, Monaco, "Andale Mono", monospace;
  font-size: 0.875rem;
}

code {
  background-color: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

pre {
  background-color: #002642;
  color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1070;
  padding: 0.75rem 1rem;
  background-color: #c5f467;
  color: #ffffff;
  clip: auto;
  width: auto;
  height: auto;
  border-radius: 0.375rem;
}

.alignwide {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:focus-visible {
  outline: 2px solid #c5f467;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn {
  border-radius: 9999px;
}
.btn--primary {
  background-color: #c5f467;
  color: #005644;
  font-weight: 600;
}
.btn--primary:hover {
  background-color: #d9f888;
  color: #005644;
}
.btn--secondary {
  background-color: transparent;
  color: #c5f467;
  border: 1px solid #c5f467;
}
.btn--secondary:hover {
  background-color: rgba(197, 244, 103, 0.1);
  color: #c5f467;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card__content {
  padding: 1.5rem;
}
.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card__description {
  color: #002642;
  margin-bottom: 1rem;
}

.post-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}
.post-card:hover {
  box-shadow: 0 8px 24px rgba(0, 38, 66, 0.08);
}
.post-card__thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.post-card__thumbnail:hover img {
  transform: scale(1.05);
}
.post-card__content {
  padding: 1.5rem;
}
.post-card__header {
  margin-bottom: 1rem;
}
.post-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.post-card__title a {
  color: #002642;
}
.post-card__title a:hover {
  color: #c5f467;
}
.post-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
.post-card__excerpt {
  color: #002642;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
.post-card__link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.post-card__link::after {
  content: "→";
  transition: transform 200ms ease;
}
.post-card__link:hover::after {
  transform: translateX(4px);
}

.posts-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header {
  text-align: center;
  padding: 4rem 0 3rem;
}
.page-header .page-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-header .page-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .page-header .page-title {
    font-size: 3.75rem;
  }
}
.page-header .page-title {
  margin-bottom: 1rem;
}
.page-header .archive-description {
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .page-header .archive-description {
    font-size: 1.125rem;
  }
}
.page-header .archive-description {
  color: #002642;
  max-width: 600px;
  margin: 0 auto;
}

.entry-content, .single-post__content {
  max-width: 720px;
  margin: 0 auto;
}
.entry-content > * + *, .single-post__content > * + * {
  margin-top: 1.5rem;
}
.entry-content h2, .single-post__content h2, .entry-content h3, .single-post__content h3, .entry-content h4, .single-post__content h4 {
  margin-top: 2.5rem;
}
.entry-content--full-width {
  max-width: none;
}

.pagination,
.posts-navigation,
.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.pagination .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.pagination .page-numbers,
.posts-navigation .page-numbers,
.post-navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  color: #002642;
  transition: all 200ms ease;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current,
.posts-navigation .page-numbers:hover,
.posts-navigation .page-numbers.current,
.post-navigation .page-numbers:hover,
.post-navigation .page-numbers.current {
  background-color: #c5f467;
  color: #ffffff;
}

.site-header {
  position: relative;
  z-index: 1020;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .site-header {
    padding-top: 30px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 60px;
}
@media (min-width: 768px) {
  .site-header__inner {
    height: 80px;
  }
}
.site-header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header__right {
    gap: 2rem;
  }
}
.site-header__cta {
  display: none;
}
@media (min-width: 768px) {
  .site-header__cta {
    display: block;
  }
}
.site-header--dark {
  background-color: #005644;
}
.site-header--dark .menu-item a {
  color: rgba(255, 255, 255, 0.85);
}
.site-header--dark .menu-item a:hover {
  color: #ffffff;
}
.site-header--dark .menu-toggle__bar {
  background-color: #ffffff;
}
.site-header--light {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.site-header--light .menu-item a {
  color: #002642;
}
.site-header--light .menu-item a:hover {
  color: #005644;
}
.site-header--light .menu-toggle__bar {
  background-color: #005644;
}
.site-header--light .main-navigation.toggled .primary-menu {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.site-header--light .main-navigation.toggled .primary-menu .menu-item a {
  color: #002642;
}
.site-header--light .main-navigation.toggled .primary-menu .menu-item a:hover {
  background-color: #f9fafb;
  color: #005644;
}

.site-branding {
  flex-shrink: 0;
}
.site-branding .custom-logo-link {
  display: block;
}
.site-branding .custom-logo-link img {
  max-height: 40px;
  width: auto;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo__img {
  height: 36px;
  width: auto;
  display: block;
}
.site-logo:hover {
  opacity: 0.85;
}

.main-navigation .primary-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .main-navigation .primary-menu {
    display: flex;
    gap: 2.5rem;
  }
}
.main-navigation .menu-item {
  margin: 0;
}
.main-navigation .menu-item a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  transition: color 200ms ease;
}
.main-navigation .menu-item.current-menu-item a, .main-navigation .menu-item.current_page_item a {
  color: #c5f467;
}
.main-navigation .menu-item-has-children {
  position: relative;
}
.main-navigation .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
}
.main-navigation .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  list-style: none;
  border: 1px solid #e5e7eb;
}
.main-navigation .menu-item-has-children .sub-menu .menu-item a {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  color: #002642;
}
.main-navigation .menu-item-has-children .sub-menu .menu-item a:hover {
  background-color: #f9fafb;
  color: #005644;
}
.main-navigation .menu-item-has-children:hover .sub-menu {
  display: block;
}

.btn--accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #c5f467;
  color: #005644;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, opacity 200ms ease;
  text-decoration: none;
}
.btn--accent:hover {
  background-color: #d9f888;
  color: #005644;
}

.btn--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #002642;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, opacity 200ms ease;
  text-decoration: none;
}
.btn--dark:hover {
  background-color: #0a3558;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  transition: all 200ms ease;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main-navigation.toggled .primary-menu {
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.main-navigation.toggled .primary-menu .menu-item a {
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
}
.main-navigation.toggled .primary-menu .sub-menu {
  position: static;
  box-shadow: none;
  padding-left: 1rem;
  border: none;
}

.site-header--dark .main-navigation.toggled .primary-menu {
  background-color: #1e3d30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header--dark .main-navigation.toggled .primary-menu .menu-item a {
  color: rgba(255, 255, 255, 0.85);
}
.site-header--dark .main-navigation.toggled .primary-menu .menu-item a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.sc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
  border-bottom: 1px solid transparent;
}
.sc-nav.sc-nav-scrolled {
  background: rgba(10, 38, 39, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(74, 199, 166, 0.15);
}

.sc-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .sc-nav-inner {
    padding: 16px 32px;
  }
}

.sc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sc-logo a {
  display: flex;
  align-items: center;
}
.sc-logo svg {
  height: 24px;
  width: auto;
}
@media (min-width: 768px) {
  .sc-logo svg {
    height: 30px;
  }
}

.sc-nav-links {
  display: none;
}
@media (min-width: 1024px) {
  .sc-nav-links {
    display: block;
  }
}
.sc-nav-links .sc-nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-nav-links .menu-item a {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(228, 245, 240, 0.7);
  text-decoration: none;
  transition: color 0.18s;
}
.sc-nav-links .menu-item a:hover {
  color: #E4F5F0;
}

.sc-nav-cta {
  display: inline-flex;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(192, 255, 114, 0.1);
  color: #C0FF72;
  border: 1.5px solid rgba(192, 255, 114, 0.35);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  text-decoration: none;
}
@media (min-width: 768px) {
  .sc-nav-cta {
    font-size: 13px;
    padding: 9px 20px;
  }
}
.sc-nav-cta:hover {
  background: rgba(192, 255, 114, 0.18);
  border-color: rgba(192, 255, 114, 0.6);
  color: #C0FF72;
}

.sc-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .sc-nav-toggle {
    display: none;
  }
}
.sc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #E4F5F0;
  transition: all 200ms ease;
}
.sc-nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.sc-nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.sc-nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sc-nav-links.toggled {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(11, 44, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 199, 166, 0.15);
  padding: 1rem;
  z-index: 1000;
}
.sc-nav-links.toggled .sc-nav-menu {
  flex-direction: column;
  gap: 0;
}
.sc-nav-links.toggled .menu-item a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
}
.sc-nav-links.toggled .menu-item a:hover {
  background: rgba(74, 199, 166, 0.08);
}

.sc-footer {
  background: #071C1C;
  color: #E4F5F0;
  font-family: "Inter", sans-serif;
}
.sc-footer__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74, 199, 166, 0.2), transparent);
}
.sc-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.sc-footer__cta {
  text-align: center;
  padding: 64px 0 56px;
}
.sc-footer__badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E9A23B;
  border: 1.5px solid rgba(233, 162, 59, 0.35);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.sc-footer__heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #E8FFF5;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .sc-footer__heading {
    font-size: 36px;
  }
}
.sc-footer__subtext {
  font-size: 16px;
  color: #7BBFB0;
  line-height: 1.65;
  font-family: "Inter", sans-serif;
  max-width: 540px;
  margin: 0 auto 28px;
}
.sc-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 32px;
  border-radius: 10px;
  background: #C0FF72;
  color: #0B2C2C;
  text-decoration: none;
  transition: background 0.18s;
  margin-bottom: 24px;
}
.sc-footer__btn:hover {
  background: #D4FF1E;
  color: #0B2C2C;
}
.sc-footer__pilot {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4A7A6E;
  margin: 0;
}
.sc-footer__bottom {
  border-top: 1px solid rgba(74, 199, 166, 0.1);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .sc-footer__bottom {
    flex-direction: row;
    align-items: center;
  }
}
.sc-footer__logo {
  flex: 1;
}
.sc-footer__logo svg {
  height: 18px;
  width: auto;
}
.sc-footer__links {
  flex: 1;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.sc-footer__links a {
  color: #4A7A6E;
  text-decoration: none;
  transition: color 0.18s;
}
.sc-footer__links a:hover {
  color: #7BBFB0;
}
.sc-footer__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4A7A6E;
}
.sc-footer__copy {
  flex: 1;
  font-size: 12px;
  color: #4A7A6E;
  margin: 0;
  text-align: right;
}

.elementor-enabled .elementor-widget-text-editor {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: #002642;
}
.elementor-enabled .elementor-button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 200ms ease;
}
.elementor-enabled .elementor-heading-title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.elementor-canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.elementor-canvas .elementor {
  flex: 1;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1320px;
}

.elementor-page .site-main {
  flex: 1;
}

.elementor-location-header {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.elementor-location-footer {
  margin-top: auto;
}

.elementor-form .elementor-field {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
}
.elementor-form .elementor-field:focus {
  border-color: #c5f467;
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 244, 103, 0.1);
}
.elementor-form .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.elementor-form .elementor-button:focus-visible {
  outline: 2px solid #c5f467;
  outline-offset: 2px;
}
.elementor-form .elementor-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.elementor-form .elementor-button {
  background-color: #c5f467;
  color: #005644;
}
.elementor-form .elementor-button:hover {
  background-color: #d9f888;
}

.elementor-image-carousel .swiper-pagination-bullet-active {
  background-color: #c5f467;
}

.elementor-testimonial__content {
  font-style: italic;
  color: #002642;
}
.elementor-testimonial__name {
  font-weight: 600;
  color: #002642;
}

.elementor-icon-box-icon {
  color: #c5f467;
}
.elementor-icon-box-title {
  font-weight: 600;
}
.elementor-icon-box-description {
  color: #002642;
}

@media (max-width: 767px) {
  .elementor-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.text-accent {
  color: #c5f467;
}

@keyframes scFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
@keyframes scPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.sc-fade-up {
  animation: scFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sc-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
  background: #0A2627;
  min-height: 100vh;
}
@media (min-width: 768px) {
  .sc-hero {
    padding: 160px 32px 100px;
  }
}

.sc-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.sc-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: linear-gradient(rgb(74, 199, 166) 1px, transparent 1px), linear-gradient(90deg, rgb(74, 199, 166) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 100%);
}

.sc-hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4AC7A6;
  background: rgba(74, 199, 166, 0.08);
  border: 1px solid rgba(74, 199, 166, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.sc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4AC7A6;
  animation: scDotPulse 2s ease infinite;
}

.sc-hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.15;
  color: #E8FFF5;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sc-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.sc-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  color: #7BBFB0;
}

.sc-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(74, 199, 166, 0.3);
}

.sc-hero-cta {
  display: inline-flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 36px;
  border-radius: 12px;
  background: #C0FF72;
  color: #0B2C2C;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  margin-bottom: 48px;
  text-decoration: none;
}
.sc-hero-cta:hover {
  background: #D4FF1E;
  color: #0B2C2C;
}

.sc-anim-strip {
  width: 100%;
  max-width: 921px;
}

.sc-signal-box {
  border-radius: 10px;
  border: 1px solid rgba(74, 199, 166, 0.2);
  overflow: hidden;
  background: #071e1e;
  box-shadow: 0 0 0 1px rgba(74, 199, 166, 0.08), 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 80px rgba(74, 199, 166, 0.06);
}

.sc-signal-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: #0B2C2C;
  border-bottom: 1px solid rgba(74, 199, 166, 0.12);
}

.sc-signal-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.sc-dot--red {
  background: rgba(217, 68, 68, 0.5);
}
.sc-dot--yellow {
  background: rgba(233, 162, 59, 0.5);
}
.sc-dot--green {
  background: rgba(74, 199, 166, 0.4);
}

.sc-signal-url {
  margin: 0 14px;
  background: rgba(74, 199, 166, 0.06);
  border: 1px solid rgba(74, 199, 166, 0.12);
  border-radius: 5px;
  padding: 3px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sc-signal-url-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(74, 199, 166, 0.4);
  flex-shrink: 0;
}

.sc-signal-url-text {
  font-size: 10px;
  color: #4A7A6E;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  white-space: nowrap;
}

.sc-signal-chrome-spacer {
  flex: 1;
}

.sc-signal-metrics {
  display: none;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sc-signal-metrics {
    display: flex;
  }
}

.sc-metric {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-metric-label {
  font-size: 10px;
  color: #2E5A52;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}

.sc-metric-value {
  font-size: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #E9A23B;
  min-width: 28px;
  text-align: right;
}

.sc-metric-divider {
  width: 1px;
  height: 14px;
  background: rgba(74, 199, 166, 0.12);
  flex-shrink: 0;
}

.sc-live {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  display: block;
}

.sc-live-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4AC7A6;
  animation: scPulseRing 2s ease infinite;
}

.sc-live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4AC7A6;
}

.sc-live-text {
  font-size: 10px;
  color: #4AC7A6;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.sc-signal-row {
  position: relative;
  height: 72px;
}
.sc-signal-row:not(:last-child) {
  border-bottom: 1px solid rgba(74, 199, 166, 0.07);
}

.sc-signal-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: block;
  will-change: transform;
}

.sc-signal-pill {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #0B2C2C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.sc-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-pill-label {
  font-size: 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sc-alert-bar {
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.5s ease;
  border-top: 1px solid transparent;
  will-change: opacity, transform;
}

.sc-alert-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: scDotPulse 1.8s ease infinite;
  transition: background 0.5s ease;
}

.sc-alert-msg {
  font-size: 10.5px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-weight: 500;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.5s ease;
}

.roi-calc {
  background: #0A2627;
  color: #E4F5F0;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roi-calc__inner {
  width: 100%;
  max-width: 950px;
  padding: 52px 24px 88px;
}
.roi-calc__header {
  margin-bottom: 44px;
  text-align: center;
}
.roi-calc__card {
  background: #081818;
  border: 1px solid rgba(74, 199, 166, 0.2);
  border-radius: 16px;
  padding: 32px 28px;
}
@media (min-width: 768px) {
  .roi-calc__card {
    padding: 40px 36px;
  }
}
.roi-calc__brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #4AC7A6;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.roi-calc__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: #E8FFF5;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .roi-calc__title {
    font-size: 36px;
  }
}
.roi-calc__subtitle {
  font-size: 16px;
  color: #7BBFB0;
  line-height: 1.65;
  font-family: "Inter", sans-serif;
  margin: 0;
}
.roi-calc__label {
  font-size: 12px;
  font-weight: 700;
  color: #7BBFB0;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.roi-calc__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.roi-calc__slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.roi-calc__slider-value {
  font-size: 18px;
  font-weight: 700;
  color: #E8FFF5;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-width: 80px;
  text-align: right;
}
.roi-calc__hint {
  font-size: 11px;
  color: #5E9A8E;
  margin-top: 7px;
  line-height: 1.55;
  font-family: "Inter", sans-serif;
}
.roi-calc__slider-field {
  margin-bottom: 20px;
}
.roi-calc__slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.roi-calc__slider-label {
  font-size: 14px;
  font-weight: 600;
  color: #C8DDD7;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.roi-calc__slider-display {
  font-size: 16px;
  font-weight: 700;
  color: #E8FFF5;
  font-family: "Inter", sans-serif;
}
.roi-calc__big-number {
  text-align: center;
  margin-bottom: 28px;
}
.roi-calc__result-label {
  font-size: 12px;
  font-weight: 700;
  color: #4AC7A6;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.roi-calc__result-value {
  font-size: 42px;
  font-weight: 800;
  color: #C0FF72;
  line-height: 1;
  animation: pulseGlow 3s ease infinite;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}
@media (min-width: 640px) {
  .roi-calc__result-value {
    font-size: 60px;
  }
}
.roi-calc__result-meta {
  font-size: 14px;
  color: #7BBFB0;
  margin-top: 12px;
  font-family: "Inter", sans-serif;
}
.roi-calc__breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.roi-calc__breakdown-label {
  font-size: 14px;
  color: #A8D4CA;
  font-family: "Inter", sans-serif;
}
.roi-calc__breakdown-value {
  font-size: 15px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.roi-calc__breakdown-value--red {
  color: #D94444;
}
.roi-calc__breakdown-value--amber {
  color: #E9A23B;
}
.roi-calc__teaser {
  border-top: 1px solid rgba(74, 199, 166, 0.12);
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.roi-calc__actions-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
@media (min-width: 640px) {
  .roi-calc__actions-row {
    flex-direction: row;
  }
}
.roi-calc__actions-row .cta-btn {
  flex: 1;
}
.roi-calc__text-btn {
  background: none;
  border: none;
  color: #5E9A8E;
  font-size: 13px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
  padding: 0;
}
.roi-calc__text-btn--muted {
  color: #7BBFB0;
  font-size: 14px;
  letter-spacing: 0;
}
.roi-calc__text-btn:hover {
  color: #7BBFB0;
}
.roi-calc__advanced-title {
  font-size: 24px;
  font-weight: 800;
  color: #E8FFF5;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.roi-calc__advanced-subtitle {
  font-size: 14px;
  color: #7BBFB0;
  margin-bottom: 28px;
  line-height: 1.65;
  font-family: "Inter", sans-serif;
}
.roi-calc__scenarios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 640px) {
  .roi-calc__scenarios {
    flex-direction: row;
  }
}
.roi-calc__back-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.roi-calc__method-content {
  background: rgba(5, 20, 20, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(74, 199, 166, 0.12);
  padding: 22px;
  margin-top: 14px;
  font-size: 13px;
  color: #5E9A8E;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
}
.roi-calc__method-content p {
  margin-bottom: 12px;
}
.roi-calc__method-content p:last-child {
  margin-bottom: 0;
}
.roi-calc__method-content strong {
  color: #A8D4CA;
}
.roi-calc__method-title {
  font-weight: 700;
  color: #7BBFB0;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(74, 199, 166, 0.2);
  background: rgba(74, 199, 166, 0.06);
  color: #A8D4CA;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.01em;
}
.category-btn:hover {
  border-color: rgba(74, 199, 166, 0.45);
  color: #E4F5F0;
  background: rgba(74, 199, 166, 0.12);
}
.category-btn.active {
  border-color: #4AC7A6;
  color: #0B2C2C;
  background: #4AC7A6;
  box-shadow: 0 0 0 1px #4AC7A6, 0 4px 16px rgba(74, 199, 166, 0.25);
}

.store-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(11, 44, 44, 0.7);
  border: 1.5px solid rgba(74, 199, 166, 0.25);
  color: #E8FFF5;
  font-size: 18px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.store-input:focus {
  border-color: #4AC7A6;
  box-shadow: 0 0 0 3px rgba(74, 199, 166, 0.15);
}
.store-input::placeholder {
  color: rgba(74, 199, 166, 0.3);
  font-weight: 400;
}

.roi-range {
  width: 100%;
  height: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(74, 199, 166, 0.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  flex: 1;
}
.roi-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #E8FFF5;
  cursor: pointer;
  border: 2px solid #0B2C2C;
  box-shadow: 0 0 6px rgba(228, 245, 240, 0.35);
}
.roi-range::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #E8FFF5;
  cursor: pointer;
  border: 2px solid #0B2C2C;
}

.cta-btn {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.cta-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cta-btn-primary {
  background: #C0FF72;
  color: #0B2C2C;
}
.cta-btn-primary:hover:not(:disabled) {
  background: #D4FF1E;
}

.cta-btn-secondary {
  background: rgba(74, 199, 166, 0.12);
  color: #4AC7A6;
  border: 1.5px solid rgba(74, 199, 166, 0.3);
}
.cta-btn-secondary:hover:not(:disabled) {
  background: rgba(74, 199, 166, 0.2);
  border-color: #4AC7A6;
}

.breakdown-bar-bg {
  background: rgba(74, 199, 166, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-bar {
  height: 6px;
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.breakdown-bar--red {
  background: linear-gradient(to right, #D94444, #E97070);
}
.breakdown-bar--amber {
  background: linear-gradient(to right, #E9A23B, #F5BF6E);
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74, 199, 166, 0.25), transparent);
  margin: 28px 0;
}

.panel-card {
  background: rgba(5, 20, 20, 0.55);
  border-radius: 12px;
  border: 1px solid rgba(74, 199, 166, 0.15);
  padding: 20px;
  margin-bottom: 16px;
}

.panel-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7BBFB0;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.method-toggle {
  background: none;
  border: 1px solid rgba(74, 199, 166, 0.2);
  color: #7BBFB0;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  text-transform: uppercase;
}
.method-toggle:hover {
  border-color: rgba(74, 199, 166, 0.4);
  color: #7BBFB0;
}

.scenario-card {
  flex: 1;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(74, 199, 166, 0.15);
  background: rgba(11, 44, 44, 0.5);
}
.scenario-card.active {
  border-color: rgba(74, 199, 166, 0.45);
  background: rgba(74, 199, 166, 0.07);
  box-shadow: 0 0 0 1px rgba(74, 199, 166, 0.2);
}
.scenario-card__label {
  font-size: 11px;
  font-weight: 700;
  color: #5E9A8E;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scenario-card.active .scenario-card__label {
  color: #4AC7A6;
}
.scenario-card__value {
  font-size: 24px;
  font-weight: 900;
  color: #7BBFB0;
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}
.scenario-card.active .scenario-card__value {
  color: #C0FF72;
}
.scenario-card__type {
  font-size: 11px;
  font-weight: 600;
  color: #5E9A8E;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scenario-card__detail {
  font-size: 12px;
  color: #5E9A8E;
  line-height: 1.55;
  font-family: "Inter", sans-serif;
  white-space: pre-line;
}

.roi-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.roi-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: modalFadeIn 0.25s ease both;
}
.roi-modal__dialog {
  position: relative;
  background: #0A2020;
  border: 1px solid rgba(74, 199, 166, 0.2);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.roi-modal__dialog::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .roi-modal__dialog {
    padding: 36px 32px;
  }
}
.roi-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #5E9A8E;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.roi-modal__close:hover {
  background: rgba(74, 199, 166, 0.1);
  color: #E4F5F0;
}
.roi-modal__header {
  text-align: center;
  margin-bottom: 16px;
}
.roi-modal__header .roi-calc__brand {
  margin-bottom: 8px;
}
.roi-modal__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #E4F5F0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .roi-modal__title {
    font-size: 24px;
  }
}
.roi-modal__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #7BBFB0;
  line-height: 1.5;
}
.roi-modal__summary {
  background: rgba(5, 20, 20, 0.6);
  border: 1px solid rgba(74, 199, 166, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #5E9A8E;
  line-height: 1.5;
}
.roi-modal__summary strong {
  color: #C0FF72;
  font-weight: 700;
}
.roi-modal__summary .roi-modal__summary-value {
  color: #E4F5F0;
  font-weight: 600;
}
.roi-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.roi-modal__field .roi-calc__label {
  margin-bottom: 4px;
}
.roi-modal__field .store-input {
  font-size: 14px;
  padding: 10px 14px;
}
.roi-modal__error {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #D94444;
  margin-top: 3px;
  min-height: 14px;
}
.roi-modal__success {
  text-align: center;
  padding: 20px 0;
}
.roi-modal__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(192, 255, 114, 0.12);
  color: #C0FF72;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1.5px solid rgba(192, 255, 114, 0.25);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 24px rgba(192, 255, 114, 0.2);
  }
  50% {
    text-shadow: 0 0 56px rgba(192, 255, 114, 0.45), 0 0 120px rgba(192, 255, 114, 0.1);
  }
}
.slide-in {
  animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.features-section {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .features-section {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  .features-section {
    padding: 6rem 0;
  }
}
.features-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .features-section__header {
    margin-bottom: 3rem;
  }
}
.features-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #002642;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .features-section__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .features-section__title {
    font-size: 2.25rem;
  }
}
.features-section__subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  color: #002642;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .features-section__subtitle {
    font-size: 1.125rem;
  }
}
.features-section__content {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .features-section__content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.features-section__content > * {
  min-width: 0;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 1rem;
}
.feature-tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .feature-tabs {
    margin-bottom: 3rem;
    overflow-x: visible;
    padding: 0;
  }
}

.feature-tabs__track {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px;
  background-color: #f3f4f6;
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .feature-tabs__track {
    padding: 15px;
  }
}

.feature-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #002642;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .feature-tab {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .feature-tab {
    padding: 1rem 3rem;
  }
}
.feature-tab img {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .feature-tab img {
    width: 20px;
    height: 20px;
  }
}
.feature-tab:hover {
  color: #002642;
}
.feature-tab--active {
  background-color: #ffffff;
  color: #1e3a2f;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.feature-tab--active:hover {
  color: #1e3a2f;
}

.tab-panel {
  display: none;
}
.tab-panel--active {
  display: block;
}

.tab-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background-color: #ffffff;
  border: 2px dashed #e5e7eb;
  border-radius: 0.75rem;
}
.tab-placeholder__icon {
  color: #9ca3af;
  margin-bottom: 1.25rem;
}
.tab-placeholder__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #002642;
  margin-bottom: 0.75rem;
}
.tab-placeholder__text {
  font-size: 1rem;
  color: #002642;
  line-height: 1.625;
  max-width: 400px;
  margin: 0;
}
.tab-placeholder__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #002642;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.tab-placeholder--muted {
  background-color: transparent;
  border-color: #f3f4f6;
}

.fixture-card-frame {
  background: linear-gradient(145deg, #0d3245 0%, #509894 100%);
  border-radius: 0.75rem;
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .fixture-card-frame {
    border-radius: 1rem;
    padding: 1.5rem;
  }
}

.fixture-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .fixture-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
}
.fixture-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.fixture-card__header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #002642;
}
.fixture-card__dropdown {
  font-size: 0.875rem;
  color: #002642;
  cursor: pointer;
}
.fixture-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fixture-card__link {
  display: inline-block;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
  font-weight: 500;
  color: #002642;
  transition: color 200ms ease;
}
.fixture-card__link:hover {
  color: #002642;
}

.fixture-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
}
.fixture-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.375rem;
  flex-shrink: 0;
}
.fixture-item__icon svg {
  width: 20px;
  height: 20px;
}
.fixture-item__icon--blue {
  background-color: #dbeafe;
  color: #2563eb;
}
.fixture-item__icon--yellow {
  background-color: #fef3c7;
  color: #d97706;
}
.fixture-item__icon--green {
  background-color: #d1fae5;
  color: #059669;
}
.fixture-item__info {
  flex: 1;
  min-width: 0;
}
.fixture-item__name {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #002642;
}
.fixture-item__location {
  display: block;
  font-size: 0.875rem;
  color: #002642;
}
.fixture-item__stats {
  text-align: right;
  flex-shrink: 0;
}
.fixture-item__value {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #002642;
}
.fixture-item__change {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
.fixture-item__change--up {
  color: #059669;
}
.fixture-item__change--down {
  color: #dc2626;
}

.blind-spot {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blind-spot__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #002642;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
@media (min-width: 768px) {
  .blind-spot__label {
    margin-bottom: 1.5rem;
  }
}
.blind-spot__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #002642;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .blind-spot__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .blind-spot__title {
    font-size: 1.875rem;
  }
}
.blind-spot__text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.875rem;
  color: #002642;
  line-height: 1.65;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blind-spot__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .blind-spot__text {
    font-size: 1.125rem;
  }
}
.blind-spot__highlight {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background-color: #e0f2ee;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #005644;
}

.stats-banner {
  padding: 2rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .stats-banner {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .stats-banner {
    padding: 4rem 0;
  }
}
.stats-banner__card {
  display: grid;
  background-color: #002642;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .stats-banner__card {
    border-radius: 1rem;
  }
}
@media (min-width: 1024px) {
  .stats-banner__card {
    grid-template-columns: 1fr 1fr;
  }
}
.stats-banner__content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .stats-banner__content {
    padding: 3rem 2rem;
  }
}
@media (min-width: 1024px) {
  .stats-banner__content {
    padding: 4rem 3rem;
  }
}
.stats-banner__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .stats-banner__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.stats-banner__text {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  color: #c5f467;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 768px) {
  .stats-banner__text {
    font-size: 1.25rem;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .stats-banner__text {
    font-size: 1.5rem;
  }
}
.stats-banner__text p {
  margin: 0;
}
.stats-banner__icon {
  flex-shrink: 0;
  align-self: center;
  width: 28px;
  height: 28px;
}
@media (min-width: 768px) {
  .stats-banner__icon {
    width: 40px;
    height: 40px;
  }
}
.stats-banner__image {
  position: relative;
  min-height: 220px;
}
@media (min-width: 768px) {
  .stats-banner__image {
    min-height: 300px;
  }
}
@media (min-width: 1024px) {
  .stats-banner__image {
    min-height: auto;
  }
}
.stats-banner__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.science-section {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .science-section {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  .science-section {
    padding: 6rem 0;
  }
}
.science-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .science-section__header {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .science-section__header {
    margin-bottom: 4rem;
  }
}
.science-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #002642;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .science-section__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .science-section__title {
    font-size: 2.25rem;
  }
}
.science-section__content {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .science-section__content {
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .science-section__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.science-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.hub-diagram {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.hub-diagram__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hub-diagram__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #005644;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hub-diagram__center svg {
  width: 32px;
  height: 32px;
}
.hub-diagram__center span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.hub-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hub-node__icon {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a2f;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.hub-node span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #002642;
}
.hub-node--stores {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.hub-node--fixtures {
  top: 20%;
  right: 5%;
}
.hub-node--shoppers {
  bottom: 20%;
  right: 5%;
}
.hub-node--revenue {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.hub-node--analytics {
  bottom: 20%;
  left: 5%;
}
.hub-node--strategy {
  top: 20%;
  left: 5%;
}

.process-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .process-cards {
    gap: 1.5rem;
  }
}

.process-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .process-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
}
.process-card__icon {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a2f;
  margin-bottom: 1rem;
}
.process-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #002642;
  margin-bottom: 0.5rem;
}
.process-card__text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  color: #002642;
  line-height: 1.65;
  margin: 0;
}

.resources-section {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .resources-section {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  .resources-section {
    padding: 6rem 0;
  }
}
.resources-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .resources-section__header {
    margin-bottom: 3rem;
  }
}
.resources-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #002642;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .resources-section__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .resources-section__title {
    font-size: 2.25rem;
  }
}
.resources-section__subtitle {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  color: #002642;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
@media (min-width: 768px) {
  .resources-section__subtitle {
    font-size: 1.125rem;
  }
}

.resources-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.resource-card {
  display: block;
  text-decoration: none;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.resource-card:hover {
  box-shadow: 0 8px 24px rgba(0, 38, 66, 0.08);
  border-color: #d1d5db;
}
.resource-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #f3f4f6;
}
.resource-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.resource-card:hover .resource-card__image img {
  transform: scale(1.03);
}
.resource-card__title {
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #002642;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .resource-card__title {
    font-size: 1.125rem;
  }
}

.single-post {
  padding: 3rem 0;
}
.single-post__header {
  text-align: center;
  margin-bottom: 3rem;
}
.single-post__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .single-post__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .single-post__title {
    font-size: 3.75rem;
  }
}
.single-post__title {
  margin-bottom: 1.5rem;
}
.single-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #002642;
  flex-wrap: wrap;
}
.single-post__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-post__author img {
  border-radius: 9999px;
}
.single-post__thumbnail {
  margin: 2.5rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.single-post__thumbnail img {
  width: 100%;
}
.single-post__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.single-post__taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.single-post__taxonomies .taxonomy-label {
  font-weight: 500;
}
.single-post__share {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.single-post__share .share-label {
  font-weight: 500;
}
.single-post__share .share-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  background-color: #f9fafb;
}
.single-post__share .share-link:hover {
  background-color: #f3f4f6;
}

.error-404 {
  text-align: center;
  padding: 6rem 0;
}
.error-404 .page-title {
  font-size: 8rem;
  color: #c5f467;
  line-height: 1;
  margin-bottom: 1rem;
}
.error-404 h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .error-404 h2 {
    font-size: 2.25rem;
  }
}
.error-404 h2 {
  margin-bottom: 1.5rem;
}
.error-404 p {
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .error-404 p {
    font-size: 1.125rem;
  }
}
.error-404 p {
  color: #002642;
  margin-bottom: 2rem;
}
.error-404 .search-form {
  max-width: 400px;
  margin: 0 auto 2rem;
}
.error-404__links {
  margin-top: 2rem;
}

.landing-page .landing-content {
  width: 100%;
}
.landing-page .entry-content--full-width {
  max-width: none;
}
.landing-page .entry-content--full-width > .alignwide,
.landing-page .entry-content--full-width > .alignfull {
  margin-left: 0;
  margin-right: 0;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}
.search-form .search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.search-form .search-field:focus {
  outline: none;
  border-color: #c5f467;
  box-shadow: 0 0 0 3px rgba(197, 244, 103, 0.1);
}
.search-form .search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.search-form .search-submit:focus-visible {
  outline: 2px solid #c5f467;
  outline-offset: 2px;
}
.search-form .search-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.search-form .search-submit {
  background-color: #c5f467;
  color: #005644;
}
.search-form .search-submit:hover {
  background-color: #d9f888;
}
