:root {
  --page-bg-1: #eef5f3;
  --page-bg-2: #f7f7f4;
  --page-bg-3: #f4efe9;
  --surface: #ffffff;
  --surface-alt: #f5faf8;
  --surface-muted: #eef4f1;
  --surface-strong: #e8f0ec;
  --text: #121614;
  --muted: #54625d;
  --border: #111111;
  --accent: #2b7a78;
  --accent-strong: #1f6664;
  --accent-soft: #63a6a2;
  --accent-ink: #f7fffd;
  --success: #2f8f5b;
  --mint: #effaf7;
  --indigo: #eff3ff;
  --sky: #edf8ff;
  --amber: #fff8e6;
  --violet: #f4efff;
  --rose: #fff1f3;
  --shadow: 4px 4px 0 0 rgba(17, 17, 17, 1);
  --shadow-lg: 7px 7px 0 0 rgba(17, 17, 17, 1);
  --shadow-soft: 3px 3px 0 0 rgba(17, 17, 17, 1);
  --grid-line: rgba(17, 17, 17, 0.06);
}

html[data-theme="dark"] {
  --page-bg-1: #101615;
  --page-bg-2: #151d1b;
  --page-bg-3: #111312;
  --surface: #151917;
  --surface-alt: #1a201e;
  --surface-muted: #1f2623;
  --surface-strong: #242b28;
  --text: #f4f8f6;
  --muted: #b8c7c2;
  --border: #f4f8f6;
  --accent: #55a8a1;
  --accent-strong: #338c85;
  --accent-soft: #78bab4;
  --accent-ink: #091110;
  --success: #74c28b;
  --mint: #172522;
  --indigo: #18212d;
  --sky: #13252c;
  --amber: #2a2217;
  --violet: #201b2a;
  --rose: #291719;
  --grid-line: rgba(244, 248, 246, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(135deg, var(--page-bg-1) 0%, var(--page-bg-2) 44%, var(--page-bg-3) 100%);
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03), transparent 18%, transparent 82%, rgba(17, 17, 17, 0.03));
  opacity: 0.72;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  min-height: 100vh;
  padding: 20px;
}

.shell-surface {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  min-height: calc(100vh - 40px);
  overflow: clip;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.shell-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
}

.site-header,
.site-main,
.site-footer,
.site-copyright {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 18px;
  padding: 18px 18px 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 14px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .site-header-inner {
  background: rgba(24, 21, 24, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-text {
  min-width: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-nav-link,
.text-link,
.social-link,
.mobile-menu-links a {
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.top-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.top-nav-link:hover,
.top-nav-link.is-active {
  border-color: var(--border);
  background: #fff;
  color: var(--text);
  box-shadow: 2px 2px 0 0 rgba(17, 17, 17, 1);
}

html[data-theme="dark"] .top-nav-link:hover,
html[data-theme="dark"] .top-nav-link.is-active {
  background: #241e24;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
}

.text-link:hover {
  background: rgba(17, 17, 17, 0.06);
}

html[data-theme="dark"] .text-link:hover {
  background: rgba(248, 243, 237, 0.08);
}

.button,
.icon-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.icon-button:hover,
.menu-button:hover,
.social-link:hover,
.mobile-menu-links a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 rgba(17, 17, 17, 1);
}

.button:active,
.icon-button:active,
.menu-button:active,
.social-link:active,
.mobile-menu-links a:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 0 rgba(17, 17, 17, 1);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: var(--surface-strong);
}

.button-full {
  width: 100%;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
}

.icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
}

html[data-theme="dark"] .icon-button {
  background: #201b1f;
}

.icon-button-mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
}

.theme-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.14;
}

.theme-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 2px;
  height: 24px;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.12;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
}

html[data-theme="dark"] .menu-button {
  background: #201b1f;
}

.menu-button span {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-button span::before {
  top: -5px;
}

.menu-button span::after {
  top: 5px;
}

.menu-button.is-open span {
  background: transparent;
}

.menu-button.is-open span::before {
  transform: translateY(5px) rotate(45deg);
}

.menu-button.is-open span::after {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  padding: 16px 18px 18px;
  border-top: 2px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .mobile-menu {
  background: rgba(24, 21, 24, 0.92);
}

.mobile-menu-links {
  display: grid;
  gap: 10px;
}

.mobile-menu-links a {
  display: block;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

html[data-theme="dark"] .mobile-menu-links a {
  background: #241e24;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.site-main {
  padding-bottom: 18px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 28px 36px;
  align-items: center;
  min-height: calc(100vh - 170px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px 56px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  text-align: left;
}

.hero-visual {
  position: relative;
  justify-self: end;
  align-self: center;
  width: min(100%, 440px);
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border: 0;
  box-shadow: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin: 0;
  padding: 0 14px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--text);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-title-main,
.hero-title-trailing {
  display: block;
  font-size: 2.5rem;
}

.hero-title-highlight {
  display: inline-block;
  padding: 10px 14px;
  border: 2px solid var(--border);
  background: var(--accent);
  box-shadow: var(--shadow);
  color: var(--accent-ink);
  font-size: 2.55rem;
}

.hero-description {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}



.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button-primary-hero {
  min-width: 250px;
}

.hero-trial,
.cta-trial {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.stats-card {
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 860px;
  margin-top: 34px;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stat-item {
  min-width: 0;
  padding: 20px 18px 18px;
  text-align: left;
}

.stat-item + .stat-item {
  border-left: 2px solid var(--border);
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-head strong {
  font-size: 2rem;
  line-height: 1;
}

.stat-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--surface-strong);
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 102px 20px 0;
}

[data-section] {
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.cta-card h2 {
  margin: 0;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-heading p,
.cta-card > p,
.footer-brand p,
.pricing-description,
.testimonial-quote,
.feature-card p,
.feature-highlight p {
  color: var(--muted);
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.testimonial-card,
.cta-card,
.feature-highlight {
  border: 2px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 18px;
  min-height: 100%;
}

.feature-tone-mint {
  background: linear-gradient(180deg, var(--mint) 0%, #ffffff 48%);
}

.feature-tone-indigo {
  background: linear-gradient(180deg, var(--indigo) 0%, #ffffff 48%);
}

.feature-tone-sky {
  background: linear-gradient(180deg, var(--sky) 0%, #ffffff 48%);
}

.feature-tone-amber {
  background: linear-gradient(180deg, var(--amber) 0%, #ffffff 48%);
}

.feature-tone-violet {
  background: linear-gradient(180deg, var(--violet) 0%, #ffffff 48%);
}

.feature-tone-rose {
  background: linear-gradient(180deg, var(--rose) 0%, #ffffff 48%);
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon,
.feature-highlight-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--border);
  font-weight: 800;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
}

.feature-header h3 {
  margin: 1px 0 0;
  font-size: 1.06rem;
  line-height: 1.25;
  font-weight: 800;
}

.feature-card p {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-highlight {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  margin-top: 16px;
  padding: 22px;
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.feature-highlight-icon {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 2rem;
  box-shadow: var(--shadow-soft);
}

.feature-highlight-copy h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 800;
}

.feature-highlight-copy p {
  margin: 12px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.capability {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.capability-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--surface-strong);
  font-size: 0.72rem;
  line-height: 1;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.pricing-card.is-popular {
  background: linear-gradient(180deg, #f1fbf9 0%, #ffffff 100%);
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-card-header {
  padding-right: 90px;
}

.pricing-name-row {
  display: grid;
  gap: 8px;
}

.pricing-name-row h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.25;
  font-weight: 800;
}

.pricing-price {
  margin: 0;
  color: var(--text);
  font-size: 1.26rem;
  font-weight: 800;
}

.pricing-description {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.pricing-card-body {
  flex: 1;
  padding-top: 18px;
}

.pricing-features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 800;
}

.pricing-card-footer {
  padding-top: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.testimonial-card.is-mystery {
  position: relative;
}

.hub-card-copy-mystery {
  position: relative;
  min-height: 100%;
  padding-bottom: 128px;
}

.testimonial-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
  background: var(--surface-muted);
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 18px;
}

.hub-card.is-text-only {
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-mystery {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 0;
  display: inline-grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 4px solid var(--border);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-strong) 100%);
  box-shadow: var(--shadow-soft);
  color: var(--accent);
  opacity: 0.9;
}

.testimonial-mystery span {
  font-size: 5.8rem;
  font-weight: 800;
  line-height: 1;
}

.testimonial-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--surface-strong);
  font-size: 1.3rem;
  line-height: 1;
}

.testimonial-kicker {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonial-kicker-mystery {
  text-transform: none;
}

.testimonial-quote {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px solid rgba(17, 17, 17, 0.14);
}

.avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.testimonial-author span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.testimonial-card-cta {
  width: 100%;
  margin-top: 18px;
}

.community-success {
  margin: 18px auto 0;
  max-width: 720px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--surface-alt);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.community-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(245, 249, 248, 0.88);
  backdrop-filter: blur(6px);
}

body.community-modal-open {
  overflow: hidden;
}

.community-modal[hidden] {
  display: none;
}

.community-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.community-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 28px 24px 24px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  box-shadow: var(--shadow);
}

.community-modal-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.community-modal-panel h2 {
  margin: 10px 0 0;
  font-size: 2rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.community-modal-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.community-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 1.2rem;
  line-height: 1;
}

.community-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.community-field {
  display: grid;
  gap: 8px;
}

.community-field > span {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.community-field input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font: inherit;
}

.community-field textarea {
  min-width: 0;
  min-height: 120px;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  resize: vertical;
}

.community-phone-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 10px;
  align-items: center;
}

.community-prefix {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--surface-strong);
  font-weight: 800;
}

.community-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.community-form .button {
  margin-top: 4px;
}

.cta-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 102px 20px 120px;
}

.cta-card {
  padding: 28px 22px 24px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.cta-card > p {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 1.04rem;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand-link {
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-columns h3 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-columns a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-columns a:hover {
  color: var(--text);
}

.site-copyright {
  padding: 6px 20px 28px;
  text-align: center;
}

.site-copyright p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .top-nav {
    display: none;
  }

  .header-actions > .text-link,
  .header-actions > .button,
  .header-actions > .icon-button[data-lang-toggle],
  .header-actions > .icon-button[data-theme-toggle] {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header-inner {
    padding-inline: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    align-items: center;
  }

  

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
  }

  .site-header {
    top: 14px;
    padding: 14px 14px 0;
  }

  .site-header-inner {
    padding: 8px 10px 8px 12px;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .hero-section {
    min-height: auto;
    padding: 64px 14px 44px;
  }

  .hero-title-main,
  .hero-title-trailing {
    font-size: 2rem;
  }

  .hero-title-highlight {
    font-size: 2.08rem;
    padding: 8px 12px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: 2px solid var(--border);
  }

  .section,
  .cta-section {
    padding-top: 82px;
    padding-inline: 14px;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
  }

  .feature-highlight-icon {
    width: 72px;
    height: 72px;
  }

  .pricing-card-header {
    padding-right: 0;
  }

  .popular-ribbon {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .community-modal {
    padding: 12px;
  }

  .community-modal-panel {
    padding: 24px 18px 18px;
  }

  .community-phone-row {
    grid-template-columns: 1fr;
  }

  .community-prefix {
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
