:root {
  --ink: #071d3a;
  --muted: #63748c;
  --blue: #1557ff;
  --blue-2: #073bc4;
  --light: #eef5ff;
  --panel: #ffffff;
  --line: #d7e5f7;
  --navy: #061936;
  --cyan: #28c7e8;
  --shadow: 0 24px 70px rgba(7, 29, 58, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.top-line {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}
.top-line span {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-wrap {
  min-height: 78px;
  padding: 0 clamp(24px, 5vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand img {
  width: 82px;
  height: 52px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 23px; line-height: 1; }
.brand small {
  margin-top: 4px;
  color: #6b7b91;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links, .nav-actions, .hero-actions, .card-actions, .trust-row, .tags, .final-cta > div:last-child {
  display: flex;
  align-items: center;
}
.nav-links { gap: 28px; font-weight: 850; color: #263b55; }
.nav-links a.active {
  color: var(--blue);
}
.nav-actions, .hero-actions, .card-actions, .final-cta > div:last-child { gap: 12px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 18px 44px rgba(21, 87, 255, .26);
}
.btn-light { background: #f8fbff; }

.story-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: 78px clamp(24px, 5vw, 86px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(40,199,232,.26), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f8fbff 50%, #eaf2ff 100%);
}
.hero-panel { max-width: 760px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  margin: 20px 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}
.hero-panel p {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}
.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-row span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}
.people-shot {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
  filter: saturate(.98);
}
.screen-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfe0f6;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7,29,58,.18);
}
.screen-card img { display: block; width: 100%; }
.desktop-screen { right: -16px; bottom: 26px; width: 74%; }
.phone-screen { left: -22px; bottom: -16px; width: 230px; border-radius: 34px; }

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  color: #fff;
  background: var(--blue);
  padding: 0 clamp(24px, 5vw, 86px);
}
.metrics-band article {
  padding: 28px 24px;
  background: rgba(255,255,255,.08);
}
.metrics-band strong { display: block; font-size: 32px; }
.metrics-band span { color: #dbe8ff; font-weight: 800; }
.customer-band strong {
  font-size: 30px;
}

.section {
  padding: 92px clamp(24px, 5vw, 86px);
}

.page-hero {
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: 78px clamp(24px, 5vw, 86px);
  background:
    radial-gradient(circle at 85% 12%, rgba(40,199,232,.22), transparent 34%),
    linear-gradient(135deg, #fff, #eef5ff);
}
.page-hero h1 {
  max-width: 880px;
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}
.page-hero .eyebrow {
  justify-self: start;
  max-width: max-content;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page-grid a {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,29,58,.06);
}
.page-grid b {
  color: var(--blue);
  font-size: 23px;
}
.page-grid span {
  color: var(--muted);
  line-height: 1.5;
}
.section-copy { margin-bottom: 34px; }
.center { text-align: center; }
.section h2 {
  max-width: 850px;
  margin: 16px auto 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}
.section p { color: var(--muted); line-height: 1.6; }
.center > p, .section-copy.center > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.product-story { background: #fff; }
.story-grid, .module-grid, .payment-grid, .download-grid, .plan-grid, .resource-grid {
  display: grid;
  gap: 22px;
}
.story-grid { grid-template-columns: repeat(4, 1fr); }
.story-grid article, .module-grid article, .payment-grid article, .download-grid article, .plan-grid article, .resource-grid article, .proof-grid article, .community-form, .community-feed article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,29,58,.06);
}
.story-grid article, .module-grid article, .payment-grid article, .download-grid article, .plan-grid article, .resource-grid article {
  padding: 28px;
}
.story-grid b, .module-grid b, .download-grid b, .resource-grid b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}
.story-grid h3, .module-grid h3, .payment-grid h3, .download-grid h3, .plan-grid h3, .resource-grid h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.modules-section, .payments-section, .resources-section { background: #f7fbff; }
.module-grid { grid-template-columns: repeat(3, 1fr); }

.product-proof {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 42px;
  align-items: center;
  background: #eef5ff;
}
.product-proof .section-copy h2 { margin-left: 0; margin-right: 0; }
.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}
.proof-grid article {
  padding: 18px;
  overflow: hidden;
}
.proof-grid .wide { grid-row: span 2; }
.proof-grid img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 16px;
  background: #eef5ff;
}
.proof-grid .wide img { height: 430px; object-fit: cover; object-position: left top; }
.proof-grid h3 { margin: 16px 0 6px; }

.learn-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: center;
}
.step-list {
  display: grid;
  gap: 14px;
}
.step-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.step-list b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--blue);
}
.step-list strong, .step-list small { display: block; }
.step-list small { margin-top: 5px; color: var(--muted); line-height: 1.45; }

.payment-grid { grid-template-columns: repeat(3, 1fr); }
.download-grid { grid-template-columns: repeat(2, 1fr); }
.tags { flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tags span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: 12px;
  font-weight: 900;
}
.card-actions { margin-top: 22px; }

.community-section {
  display: grid;
  grid-template-columns: .8fr .9fr 1.1fr;
  gap: 24px;
  background: #eef5ff;
}
.customer-community .community-intro p {
  font-size: 17px;
}
.community-intro {
  padding-right: 12px;
}
.community-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}
.community-form label {
  display: grid;
  gap: 7px;
  color: #31435a;
  font-weight: 850;
}
.community-form input, .community-form select, .community-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
}
.community-form textarea { min-height: 118px; resize: vertical; }
.community-feed {
  display: grid;
  gap: 14px;
}
.community-feed article { padding: 18px; }
.community-feed article > div, .community-feed footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.community-feed b, .community-feed em {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.community-feed button {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--blue);
  background: #eaf2ff;
  font-weight: 900;
  cursor: pointer;
}

.community-hero {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: 64px clamp(24px, 5vw, 86px) 30px;
  background:
    radial-gradient(circle at 82% 6%, rgba(40,199,232,.27), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f6fbff 48%, #e9f4ff 100%);
}
.community-hero,
.community-layout,
.community-main,
.community-panel,
.community-composer,
.community-post,
.community-spotlight,
.community-spotlight article {
  min-width: 0;
}
.community-hero-copy h1 {
  max-width: 760px;
}
.community-hero-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}
.community-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.community-pills span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 900;
}
.community-spotlight {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96), rgba(255,255,255,.5)),
    url("../img/banners/retail-counter-windows-pos.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.community-spotlight article {
  width: min(540px, 85%);
  margin-left: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(7,29,58,.16);
}
.support-badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  color: #08784a;
  background: #dcf8eb;
  font-size: 12px;
  font-weight: 950;
}
.community-spotlight h2 {
  margin: 16px 0 8px;
  font-size: 28px;
  line-height: 1.14;
}
.community-spotlight p {
  color: var(--muted);
  line-height: 1.52;
}
.answer-preview {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  color: #314762;
  background: #f4f8ff;
  font-weight: 750;
}
.answer-preview b {
  color: var(--blue);
  font-size: 13px;
}

.community-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
  padding: 30px clamp(24px, 5vw, 86px) 92px;
  background: #eef5ff;
}
.community-panel,
.community-composer,
.community-post,
.community-news-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 48px rgba(7,29,58,.07);
}
.community-panel {
  padding: 22px;
}
.community-panel h2 {
  margin: 0 0 16px;
  font-size: 20px;
}
.community-topics {
  position: sticky;
  top: 140px;
}
.topic-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-top: 10px;
  border-radius: 18px;
  color: #263b55;
  background: #f7fbff;
  font-weight: 900;
}
.topic-card.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #2295f3);
}
.topic-card i,
.guide-list b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #e8f1ff;
  font-style: normal;
}
.topic-card.active i {
  color: #fff;
  background: rgba(255,255,255,.22);
}
.topic-card b,
.topic-card small {
  display: block;
}
.topic-card small {
  margin-top: 3px;
  opacity: .74;
  font-size: 12px;
  line-height: 1.25;
}
.topic-card strong {
  font-size: 15px;
}
.community-main {
  min-width: 0;
}
.community-composer {
  padding: 18px;
  margin-bottom: 16px;
}
.composer-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
}
.community-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
}
.community-composer input,
.community-composer select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  font-weight: 780;
}
.composer-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 13px 0 0 65px;
}
.composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-left: 65px;
}
.composer-actions span {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf4ff;
  font-size: 12px;
  font-weight: 950;
}
.community-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.community-tabs a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3d5069;
  background: rgba(255,255,255,.86);
  font-weight: 950;
}
.community-tabs a.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.community-feed-rich {
  gap: 14px;
}
.community-post {
  padding: 20px;
}
.community-post header,
.community-post footer,
.member {
  display: flex;
  align-items: center;
  gap: 12px;
}
.community-post header,
.community-post footer {
  justify-content: space-between;
}
.member b,
.member small {
  display: block;
}
.member small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.community-post h2 {
  margin: 18px 0 9px;
  font-size: 25px;
  line-height: 1.18;
}
.community-post p {
  margin-bottom: 14px;
  color: #526982;
}
.community-post blockquote {
  margin: 14px 0;
  padding: 14px;
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  color: #314762;
  background: #f4f8ff;
  line-height: 1.45;
  font-weight: 750;
}
.community-post footer {
  padding-top: 14px;
  border-top: 1px solid #edf3fb;
}
.community-post footer span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.community-post footer strong,
.status {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf2ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}
.status.answered {
  color: #08784a;
  background: #dcf8eb;
}
.community-side {
  display: grid;
  gap: 16px;
}
.community-news-card {
  min-height: 290px;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,29,58,.96), rgba(21,87,255,.78)),
    url("../img/showcase/admin-dashboard.png") left top / cover no-repeat;
}
.community-news-card .eyebrow {
  color: var(--blue);
  background: #fff;
}
.community-news-card h2 {
  margin: 54px 0 10px;
  color: #fff;
  font-size: 27px;
  line-height: 1.18;
}
.community-news-card p {
  color: #d9e8ff;
}
.guide-list {
  display: grid;
  gap: 11px;
}
.guide-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #f7fbff;
}
.guide-list b {
  color: #fff;
  background: var(--blue);
}
.guide-list strong,
.guide-list small {
  display: block;
}
.guide-list small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.plan-grid { grid-template-columns: repeat(3, 1fr); }
.plan-grid strong { color: var(--blue); }
.plan-grid ul { padding: 0; margin: 18px 0 24px; list-style: none; }
.plan-grid li { padding: 10px 0; border-bottom: 1px solid #eef3f8; color: var(--muted); }
.resource-grid { grid-template-columns: repeat(3, 1fr); }

.final-cta {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 66px clamp(24px, 5vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,25,54,.96), rgba(21,87,255,.72)),
    url("../img/showcase/admin-dashboard.png") center / cover no-repeat;
}
.final-cta h2 { max-width: 760px; margin-bottom: 10px; color: #fff; font-size: clamp(32px, 4vw, 50px); }
.final-cta p { color: #dceaff; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px clamp(24px, 5vw, 86px);
  color: #d7e8fb;
  background: var(--navy);
}
.site-footer .brand strong { color: #fff; }
.site-footer .brand img {
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.22));
}
.site-footer p { max-width: 420px; color: #a7bdd8; line-height: 1.55; }
.site-footer h4 { margin: 0 0 14px; color: #fff; }
.site-footer a:not(.brand) { display: block; margin: 10px 0; color: #cfe1f7; font-weight: 750; }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(207, 225, 247, .18);
  color: #a7bdd8;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.footer-bottom a {
  display: inline !important;
  margin: 0 !important;
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.analytics-page {
  min-height: 100vh;
  padding: 54px clamp(24px, 5vw, 86px);
  background: #f7fbff;
}
.analytics-page h1 { font-size: 56px; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0;
}
.metric-grid article, .analytics-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.metric-grid strong { display: block; color: var(--blue); font-size: 38px; }
.metric-grid span { color: var(--muted); font-weight: 850; }
.analytics-list { display: grid; gap: 14px; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .story-hero, .product-proof, .learn-section, .community-section, .community-hero, .final-cta, .site-footer { grid-template-columns: 1fr; }
  .community-layout { grid-template-columns: 1fr; }
  .community-topics { position: static; }
  .community-side { grid-template-columns: repeat(2, 1fr); }
  .community-news-card { grid-column: 1 / -1; }
  .story-grid, .module-grid, .payment-grid, .resource-grid, .metric-grid, .page-grid { grid-template-columns: repeat(2, 1fr); }
  .desktop-screen { right: 0; }
}

@media (max-width: 720px) {
  body { overflow-x: hidden; }
  .top-line {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
  }
  .top-line a {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .nav-wrap { padding: 14px 18px; }
  .nav-actions { display: none; }
  .story-hero, .section, .community-hero, .community-layout, .final-cta, .site-footer { padding-left: 18px; padding-right: 18px; }
  .community-hero {
    gap: 28px;
    padding-top: 48px;
  }
  .community-hero-copy p {
    max-width: 340px;
    font-size: 16px;
  }
  .community-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 340px;
  }
  .community-pills span {
    text-align: center;
  }
  .community-spotlight {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }
  .community-spotlight article {
    width: min(100%, 300px);
    max-width: 300px;
    margin-left: 0;
    padding: 18px;
  }
  .community-spotlight h2,
  .community-post h2,
  .community-news-card h2 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }
  .answer-preview {
    overflow-wrap: anywhere;
  }
  .community-layout {
    width: 100%;
    max-width: 100vw;
    padding-top: 28px;
    padding-bottom: 62px;
  }
  .community-panel,
  .community-composer,
  .community-post,
  .community-side,
  .community-main {
    width: 100%;
    max-width: calc(100vw - 36px);
  }
  .composer-row {
    grid-template-columns: 52px 1fr;
  }
  .composer-row .btn {
    grid-column: 1 / -1;
  }
  .composer-more {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .composer-actions {
    padding-left: 0;
  }
  .community-post header,
  .community-post footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .community-side {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 330px;
    padding: 52px 18px;
  }
  .page-hero p {
    max-width: 340px;
    font-size: 16px;
  }
  .story-hero { min-height: auto; grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 46px; }
  .hero-panel {
    min-width: 0;
    max-width: 100%;
  }
  h1 {
    max-width: 340px;
    font-size: 34px;
    overflow-wrap: break-word;
  }
  .hero-panel p {
    max-width: 340px;
    font-size: 16px;
    overflow-wrap: break-word;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 340px;
  }
  .trust-row span {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
  }
  .hero-showcase { min-height: auto; }
  .people-shot { height: 300px; border-radius: 24px; }
  .desktop-screen, .phone-screen { position: relative; inset: auto; width: 100%; margin-top: 14px; }
  .desktop-screen img {
    min-width: 0;
  }
  .phone-screen { width: min(280px, 88%); margin-left: auto; margin-right: auto; }
  .metrics-band, .story-grid, .module-grid, .payment-grid, .download-grid, .plan-grid, .resource-grid, .metric-grid, .proof-grid, .page-grid {
    grid-template-columns: 1fr;
  }
  .metrics-band { padding-left: 18px; padding-right: 18px; }
  .section { padding-top: 62px; padding-bottom: 62px; }
  .proof-grid .wide { grid-row: auto; }
  .proof-grid .wide img, .proof-grid img { height: auto; object-fit: contain; }
  .community-feed article > div, .community-feed footer, .final-cta > div:last-child {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}
