:root {
  --red: #dc1218;
  --red-dark: #9f0d12;
  --navy: #0f1f33;
  --navy-2: #142945;
  --ink: #142033;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --muted: #607086;
  --line: #d8dee8;
  --teal: #1f6f8b;
  --gold: #a76d0a;
  --green: #486b48;
  --shadow: 0 18px 45px rgba(15, 31, 51, 0.16);
  --frame: min(1180px, calc(100% - clamp(32px, 9vw, 160px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f8fb;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a,
.app-card a {
  text-decoration: none;
}

nav a:hover,
.app-card a:hover {
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 590px;
  padding: clamp(36px, 5vw, 56px) 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 19, 33, 0.98) 0%, rgba(15, 31, 51, 0.96) 48%, rgba(24, 23, 42, 0.95) 100%),
    var(--navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: -80px;
  width: min(520px, 40vw);
  height: 300px;
  background: rgba(220, 18, 24, 0.14);
  transform: skewY(-8deg);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: var(--frame);
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.hero .button.secondary,
.product-copy .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-z {
  position: absolute;
  right: -8%;
  top: 0;
  width: min(520px, 42vw);
  opacity: 0.2;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.34));
  transform: rotate(-4deg);
}

.suite-stack {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 460px;
  padding: 22px;
}

.suite-chip {
  display: grid;
  gap: 10px;
  width: min(100%, 410px);
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}

.suite-chip:nth-child(2) {
  margin-left: 52px;
}

.suite-chip:nth-child(3) {
  margin-left: 18px;
}

.suite-chip img {
  width: min(270px, 100%);
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.suite-chip span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.craft-chip {
  border-left-color: #f15a3b;
}

.sec-chip {
  border-left-color: #061a33;
}

.intro-band {
  padding: 24px 0;
  color: #fff;
  background: var(--navy);
}

.frame {
  width: var(--frame);
  margin: 0 auto;
}

.intro-band p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

.section {
  background: var(--paper);
  padding: clamp(58px, 8vw, 96px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.app-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 31, 51, 0.08);
}

.app-card.teal {
  border-top-color: var(--teal);
}

.app-card.gold {
  border-top-color: var(--gold);
}

.app-card.craft {
  border-top-color: #f15a3b;
}

.app-card.secstaff {
  border-top-color: #061a33;
}

.app-card.badge {
  border-top-color: #d6a840;
}

.app-card p {
  color: var(--muted);
  line-height: 1.55;
}

.app-logo {
  width: min(100%, 280px);
  height: 86px;
  margin: -8px 0 18px;
  object-fit: contain;
  object-position: left center;
}

.app-card a {
  width: fit-content;
  color: var(--red);
  font-weight: 900;
}

.app-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-detail {
  padding: clamp(58px, 8vw, 96px) 0;
  color: #fff;
}

.app-detail-inner {
  width: var(--frame);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 0.92fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  margin: 0 auto;
}

.app-detail-inner.reverse {
  grid-template-columns: minmax(340px, 0.92fr) minmax(280px, 0.82fr);
}

.app-detail-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.app-detail .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.app-detail.planner {
  background: var(--navy);
}

.inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: #fff;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.detail-art {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.fieldproof-art {
  background: #fff;
}

.craft-art {
  padding: 10px;
  background: #fffaf5;
}

.secstaff-panel {
  display: grid;
  gap: 12px;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.secstaff-panel img {
  width: min(100%, 360px);
  margin-bottom: 10px;
}

.secstaff-panel span {
  padding: 13px 14px;
  color: #061a33;
  background: #f5f7fa;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.app-detail.money {
  background: var(--navy-2);
}

.app-detail.craft-detail {
  background: #064653;
}

.app-detail.secstaff-detail {
  background: #061a33;
}

.app-detail.badge-detail {
  background: #0f1f33;
}

.badge-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.badge-panel img {
  width: 100%;
  border-radius: 6px;
}

.badge-panel-list {
  display: grid;
  gap: 10px;
}

.badge-panel-list span {
  padding: 11px 12px;
  color: #0f1f33;
  background: #f4f7fb;
  border-left: 5px solid #d6a840;
  border-radius: 6px;
  font-weight: 900;
}

.app-detail.home {
  background: #18334f;
}

.split-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
}

.principles {
  display: grid;
  gap: 18px;
}

.principles p {
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.principles strong {
  color: var(--ink);
}

.updates {
  padding: clamp(44px, 7vw, 80px) 0;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.updates-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.updates-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.updates p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.release-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 7px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 31, 51, 0.07);
}

.release-card.craft {
  border-top-color: #f15a3b;
}

.release-card.secstaff {
  border-top-color: #061a33;
}

.release-card.badge {
  border-top-color: #d6a840;
}

.release-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.release-topline strong {
  color: var(--red);
}

.release-card p {
  margin: 18px 0 10px;
  color: var(--muted);
  line-height: 1.5;
}

.release-meta {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-card ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 20px;
  padding-left: 18px;
  color: var(--ink);
}

.release-card li {
  padding-left: 2px;
}

.release-card a {
  width: fit-content;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.release-card a:hover {
  color: var(--navy);
}

.updates-contact {
  margin-top: 24px;
}

footer,
.zco-footer {
  color: #fff;
  background: var(--navy);
  font-size: 0.92rem;
}

.zco-footer {
  padding: 26px clamp(18px, 5vw, 72px);
}

.zco-footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.zco-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.zco-footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.zco-footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.zco-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.zco-footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.zco-footer-links a:hover {
  color: var(--red);
}

@media (max-width: 760px) {
  .zco-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .zco-footer-links {
    justify-content: center;
  }
}

.product-page {
  background: #f4f1eb;
}

.product-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(120deg, rgba(18, 18, 18, 0.97), rgba(111, 5, 5, 0.96) 58%, rgba(167, 8, 8, 0.86)),
    #121212;
  color: #fff;
}

.product-copy {
  max-width: 780px;
}

.product-copy .eyebrow {
  color: #f2c7c7;
}

.product-copy .hero-text {
  color: rgba(255, 255, 255, 0.82);
}

.product-copy .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.product-logo {
  width: min(100%, 430px);
  max-height: 126px;
  margin: 4px 0 22px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: min(100%, 720px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 6vw, 80px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.proof-strip span {
  padding: 8px 12px;
  border: 1px solid #cfc6ba;
  border-radius: 999px;
  color: #3c3731;
  font-size: 0.9rem;
  font-weight: 900;
}

.product-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 80px);
}

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

.feature-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 80px);
  color: #fff;
  background: #1d1b18;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(52px, 8vw, 94px) clamp(18px, 6vw, 80px);
  background: #fff;
}

.brand-panel p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.brand-panel img {
  width: min(100%, 520px);
  justify-self: center;
}

.product-band .eyebrow {
  color: #f2c7c7;
}

.use-list {
  display: grid;
  gap: 16px;
}

.use-list p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.use-list strong {
  color: #fff;
}

.product-cta {
  background: #e7ded0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding: 34px 0;
  }

  .product-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-z {
    right: 0;
    top: 12px;
    width: min(360px, 76vw);
  }

  .suite-stack {
    min-height: auto;
    padding: 8px 0 0;
  }

  .suite-chip,
  .suite-chip:nth-child(2),
  .suite-chip:nth-child(3) {
    width: 100%;
    margin-left: 0;
  }

  .app-grid,
  .release-grid,
  .app-detail-inner,
  .app-detail-inner.reverse,
  .split-inner,
  .feature-grid,
  .product-band {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 260px;
  }

  .updates-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 0.95rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  nav {
    gap: 8px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  .button {
    width: 100%;
  }
}

.fieldproof-page {
  --zp-navy: #0f1f33;
  --zp-navy-2: #142945;
  --zp-red: #dc1218;
  --zp-ink: #142033;
  --zp-muted: #607086;
  --zp-line: #d8dee8;
  --zp-soft: #f5f7fb;
  --zp-white: #ffffff;
  --zp-shadow: 0 18px 45px rgba(15, 31, 51, 0.16);
  --zp-frame: min(calc(100% - clamp(32px, 10vw, 180px)), 1080px);
  color: var(--zp-ink);
  background: var(--zp-white);
  line-height: 1.5;
}

.zp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--zp-frame);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--zp-line);
  backdrop-filter: blur(12px);
}

.zp-brand img {
  display: block;
  width: min(300px, 42vw);
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.zp-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--zp-muted);
  font-size: 14px;
  font-weight: 700;
}

.zp-nav a {
  text-decoration: none;
}

.zp-nav a:hover {
  color: var(--zp-navy);
}

.zp-hero {
  position: relative;
  width: var(--zp-frame);
  min-height: clamp(420px, 34vw, 520px);
  display: grid;
  align-items: end;
  margin: 0 auto;
  overflow: hidden;
  background: var(--zp-navy);
}

.zp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 51, 0.92) 0%, rgba(15, 31, 51, 0.68) 44%, rgba(15, 31, 51, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 31, 51, 0.88) 0%, rgba(15, 31, 51, 0) 46%);
}

.zp-hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 30px 46px;
  color: var(--zp-white);
}

.screenshot-hero .zp-hero-content,
.craft-screenshot-hero .craft-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.45fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.zp-kicker {
  margin: 0 0 10px;
  color: var(--zp-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fieldproof-page h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

.fieldproof-page h2 {
  margin-bottom: 18px;
  color: var(--zp-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.fieldproof-page h3 {
  color: var(--zp-navy);
  font-size: 22px;
}

.zp-hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.zp-hero-note {
  display: inline-block;
  max-width: 640px;
  margin: 2px 0 0;
  padding: 10px 12px;
  color: var(--zp-white);
  background: rgba(220, 18, 24, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.zp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.zp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.zp-button.primary {
  color: var(--zp-white);
  background: var(--zp-red);
}

.zp-button.secondary {
  color: var(--zp-white);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.zp-button.dark {
  background: var(--zp-navy);
}

.zp-button.outline {
  color: var(--zp-navy);
  background: var(--zp-white);
  border: 1px solid var(--zp-line);
}

.zp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.zp-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.zp-band {
  background: var(--zp-soft);
  border-block: 1px solid var(--zp-line);
}

.zp-intro {
  padding: 42px 0;
}

.zp-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

.zp-split > div:last-child p {
  color: var(--zp-muted);
  font-size: 19px;
}

.zp-split > div:last-child p:last-child {
  margin-bottom: 0;
  color: var(--zp-navy);
  font-weight: 800;
}

.zp-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.zp-download-section {
  padding-bottom: 0;
}

.zp-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  color: var(--zp-white);
  background: var(--zp-navy);
  border-radius: 8px;
  box-shadow: var(--zp-shadow);
}

.zp-download-panel h2 {
  color: var(--zp-white);
}

.zp-download-panel p:not(.zp-kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: #c9d3e2;
}

.zp-language-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(42px, 6vw, 70px);
  padding: clamp(26px, 4vw, 38px);
  color: var(--zp-ink);
  background: #fff;
  border: 1px solid var(--zp-line);
  border-left: 7px solid var(--zp-red);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(15, 31, 51, 0.04);
}

.zp-language-callout h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.zp-language-callout p:not(.zp-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--zp-muted);
}

.zp-download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.phone-shot {
  position: relative;
  margin: 0;
  padding: 10px;
  background: #0d1b2d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(15, 31, 51, 0.22);
}

.phone-shot.is-clickable {
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.phone-shot.is-clickable::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(9, 21, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.phone-shot.is-clickable:hover,
.phone-shot.is-clickable:focus-visible {
  border-color: rgba(235, 18, 30, 0.55);
  box-shadow: 0 24px 58px rgba(15, 31, 51, 0.3);
  transform: translateY(-2px);
}

.phone-shot.is-clickable:hover::after,
.phone-shot.is-clickable:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.phone-shot.is-clickable:focus-visible {
  outline: 3px solid rgba(235, 18, 30, 0.32);
  outline-offset: 4px;
}

.phone-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border-radius: 16px;
}

.hero-phone-shot,
.craft-hero-shot {
  width: min(100%, 310px);
  justify-self: center;
}

.phone-shot.small {
  width: min(100%, 220px);
  padding: 8px;
  border-radius: 20px;
}

.language-screens {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.screenshot-group {
  margin-top: 34px;
}

.screenshot-group:first-of-type {
  margin-top: 0;
}

.screenshot-group h3 {
  margin-bottom: 18px;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.phone-gallery .phone-shot {
  background: #101f34;
}

.screenshot-viewer {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(4, 13, 24, 0.82);
  backdrop-filter: blur(8px);
}

.screenshot-viewer.is-open {
  display: flex;
}

.screenshot-viewer-open {
  overflow: hidden;
}

.screenshot-viewer__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 1180px);
  max-height: calc(100vh - 36px);
}

.screenshot-viewer__image {
  display: block;
  width: auto;
  max-width: min(100%, 1080px);
  max-height: calc(100vh - 130px);
  object-fit: contain;
  background: #fff;
  border: 10px solid #0d1b2d;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.screenshot-viewer__caption {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.screenshot-viewer__close {
  position: absolute;
  top: -14px;
  right: clamp(0px, 4vw, 24px);
  z-index: 1;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #eb121e;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.screenshot-viewer__close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

.bilingual-section .zp-split {
  align-items: center;
}

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

.zp-feature-grid .zp-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.zp-card,
.zp-price-card,
.zp-faq-list details,
.zp-cta-section {
  border: 1px solid var(--zp-line);
  border-radius: 8px;
  background: var(--zp-white);
  box-shadow: 0 1px 0 rgba(15, 31, 51, 0.04);
}

.zp-card,
.zp-price-card {
  padding: 24px;
}

.zp-card p,
.zp-price-card li,
.zp-faq-list p,
.zp-cta-section p {
  color: var(--zp-muted);
}

.zp-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--zp-red);
  background: #fff1f1;
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  font-weight: 900;
}

.proof-screen {
  height: 126px;
  margin-bottom: 18px;
  padding: 10px;
  overflow: hidden;
  color: var(--zp-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 251, 0.94)),
    #fff;
  border: 1px solid var(--zp-line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 31, 51, 0.09);
}

.proof-screen-bar,
.proof-screen-field,
.proof-time-row,
.proof-avatar-row,
.proof-pay-link,
.proof-translate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.proof-screen-bar {
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--zp-line);
  color: var(--zp-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-screen-bar strong,
.proof-screen-field b,
.proof-time-row span,
.proof-translate b {
  color: var(--zp-red);
}

.proof-screen-field,
.proof-time-row,
.proof-pay-link,
.proof-translate {
  min-height: 24px;
  padding: 5px 8px;
  background: var(--zp-soft);
  border-radius: 8px;
  font-size: 0.8rem;
}

.proof-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 7px;
}

.proof-photo-row i {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  background:
    linear-gradient(160deg, transparent 52%, rgba(15, 31, 51, 0.22) 53% 58%, transparent 59%),
    linear-gradient(20deg, transparent 50%, rgba(72, 107, 72, 0.28) 51% 67%, transparent 68%),
    linear-gradient(180deg, #dce6f1 0 52%, #b8c49a 53% 100%);
  border: 1px solid #cfd8e5;
  border-radius: 8px;
}

.proof-photo-row i:nth-child(2) {
  background:
    linear-gradient(160deg, transparent 48%, rgba(15, 31, 51, 0.18) 49% 54%, transparent 55%),
    linear-gradient(20deg, transparent 50%, rgba(72, 107, 72, 0.36) 51% 72%, transparent 73%),
    linear-gradient(180deg, #eef3f8 0 48%, #7f986e 49% 100%);
}

.proof-photo-row i:nth-child(3) {
  background:
    linear-gradient(135deg, transparent 42%, rgba(220, 18, 24, 0.26) 43% 48%, transparent 49%),
    linear-gradient(180deg, #d9e3ed 0 36%, #b8c2cf 37% 100%);
}

.proof-photo-row span {
  position: absolute;
  left: 5px;
  bottom: 5px;
  padding: 2px 5px;
  color: #fff;
  background: rgba(15, 31, 51, 0.72);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
}

.proof-map {
  position: relative;
  height: 58px;
  margin-bottom: 7px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    #dfe9ef;
  background-size: 24px 24px;
  border: 1px solid var(--zp-line);
  border-radius: 8px;
}

.proof-map i {
  position: absolute;
  width: 120%;
  height: 1px;
  left: -10%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.48);
}

.proof-map i:nth-child(1) { top: 18px; transform: rotate(8deg); }
.proof-map i:nth-child(2) { top: 40px; transform: rotate(-12deg); }
.proof-map i:nth-child(3) { top: 28px; transform: rotate(34deg); }

.proof-map .map-park,
.proof-map .map-water {
  position: absolute;
  display: block;
  opacity: 0.85;
}

.proof-map .map-park {
  left: 7px;
  bottom: 7px;
  width: 62px;
  height: 24px;
  background: #bfd7b6;
  border-radius: 12px 18px 10px 12px;
}

.proof-map .map-water {
  right: -12px;
  top: 8px;
  width: 78px;
  height: 24px;
  background: #aacadb;
  border-radius: 999px;
  transform: rotate(-16deg);
}

.proof-map b {
  position: absolute;
  left: 54%;
  top: 45%;
  width: 20px;
  height: 20px;
  background: var(--zp-red);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 6px 12px rgba(15, 31, 51, 0.2);
  transform: translate(-50%, -60%) rotate(-45deg);
}

.proof-clock {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 8px;
  border: 8px solid var(--zp-navy);
  border-radius: 50%;
}

.proof-clock i {
  width: 22px;
  height: 22px;
  border-left: 4px solid var(--zp-red);
  border-bottom: 4px solid var(--zp-red);
  transform: rotate(-35deg) translate(2px, -3px);
  transform-origin: bottom left;
}

.proof-report-preview {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.proof-report-chart,
.proof-report-table {
  min-height: 54px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--zp-line);
  border-radius: 8px;
}

.proof-report-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 5px;
}

.proof-report-chart i {
  display: block;
  background: var(--zp-red);
  border-radius: 6px 6px 2px 2px;
}

.proof-report-chart i:nth-child(1) { height: 48%; }
.proof-report-chart i:nth-child(2) { height: 74%; background: var(--zp-navy); }
.proof-report-chart i:nth-child(3) { height: 58%; }

.proof-report-table {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 4px 8px;
  color: var(--zp-muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-report-table b {
  color: var(--zp-navy);
}

.proof-avatar-row {
  min-height: 54px;
  margin-bottom: 7px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--zp-line);
  border-radius: 8px;
  justify-content: flex-start;
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-avatar-row i {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.5) 45% 55%, transparent 56%),
    linear-gradient(180deg, #70a35b 0 52%, #4d7e3f 53% 100%);
  border: 2px solid #d9e8d2;
  border-radius: 8px;
}

.proof-avatar-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.proof-pay-link {
  justify-content: center;
  min-height: 54px;
  margin-bottom: 7px;
  color: var(--zp-navy);
  background: #fff;
  border: 1px dashed #bdc7d5;
  font-weight: 900;
}

.proof-translate {
  display: grid;
  gap: 8px;
  min-height: 76px;
}

.proof-translate span,
.proof-translate b {
  display: block;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid var(--zp-line);
  border-radius: 8px;
}

.zp-audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zp-audience-list span {
  padding: 10px 14px;
  color: var(--zp-navy);
  background: var(--zp-white);
  border: 1px solid var(--zp-line);
  border-radius: 8px;
  font-weight: 800;
}

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

.zp-price-card {
  position: relative;
}

.zp-price-card.highlighted {
  border-color: rgba(220, 18, 24, 0.45);
  box-shadow: var(--zp-shadow);
}

.zp-price {
  color: var(--zp-navy);
  font-size: 34px;
  font-weight: 900;
}

.zp-price-card ul {
  padding-left: 20px;
}

.zp-price-card li {
  margin: 10px 0;
}

.zp-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 6px 10px;
  color: var(--zp-red);
  background: #fff1f1;
  border: 1px solid #ffd6d6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.zp-faq-list {
  display: grid;
  gap: 12px;
}

.zp-faq-list details {
  padding: 18px 20px;
}

.zp-faq-list summary {
  cursor: pointer;
  color: var(--zp-navy);
  font-weight: 900;
}

.zp-faq-list details p {
  margin: 12px 0 0;
}

.zp-cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(54px, 8vw, 96px);
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: 30px;
}

.zp-footer {
  padding: 28px 0;
  color: #c9d3e2;
  background: var(--zp-navy);
}

.zp-footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.zp-footer-product-logo {
  width: 150px;
  height: auto;
  padding: 6px;
  background: var(--zp-white);
  border-radius: 6px;
}

.zp-footer p {
  margin: 0;
}

.zp-footer-maker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px !important;
  color: var(--zp-white);
  font-weight: 800;
}

.zp-footer-maker a {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.zp-footer-maker img {
  width: 24px;
  height: 24px;
  padding: 2px;
  object-fit: contain;
  background: var(--zp-white);
  border-radius: 4px;
}

.zp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px !important;
}

.zp-footer-links a {
  color: var(--zp-white);
  font-weight: 700;
}

.zp-legal-hero {
  padding: clamp(54px, 8vw, 90px) 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 19, 33, 0.98) 0%, rgba(15, 31, 51, 0.94) 64%, rgba(220, 18, 24, 0.18) 100%),
    var(--zp-navy);
}

.zp-legal-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 1;
}

.zp-legal-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.zp-legal-page article {
  max-width: 900px;
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--zp-line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(15, 31, 51, 0.04);
}

.zp-legal-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.zp-legal-page h2:first-child {
  margin-top: 0;
}

.zp-legal-page p {
  color: var(--zp-muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.zp-legal-page a {
  color: var(--zp-red);
  font-weight: 900;
}

@media (max-width: 900px) {
  .zp-header {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    width: min(calc(100% - 32px), 1080px);
    min-height: 0;
    padding: 8px 0;
  }

  .zp-brand img {
    width: min(240px, 38vw);
    max-height: 56px;
  }

  .zp-nav {
    flex: 1;
    width: auto;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .zp-nav a {
    flex: 0 0 auto;
  }

  .zp-hero {
    width: min(calc(100% - 32px), 1080px);
    min-height: 560px;
    background:
      radial-gradient(circle at 86% 22%, rgba(220, 18, 24, 0.16), transparent 32%),
      linear-gradient(160deg, #0b1726 0%, #10243d 58%, #0f1f33 100%);
  }

  .zp-hero-bg {
    opacity: 0.16;
    object-fit: contain;
    object-position: center top;
  }

  .zp-hero-overlay {
    background:
      linear-gradient(0deg, rgba(11, 23, 38, 0.98) 0%, rgba(11, 23, 38, 0.88) 58%, rgba(11, 23, 38, 0.74) 100%),
      linear-gradient(90deg, rgba(11, 23, 38, 0.94) 0%, rgba(11, 23, 38, 0.78) 100%);
  }

  .zp-split,
  .screenshot-hero .zp-hero-content,
  .zp-feature-grid,
  .zp-pricing-grid,
  .zp-download-panel,
  .zp-language-callout,
  .zp-cta-section {
    grid-template-columns: 1fr;
  }

  .zp-feature-grid .zp-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .zp-download-actions {
    justify-content: flex-start;
  }

  .zp-download-actions .zp-button,
  .zp-language-callout .zp-button,
  .zp-cta-section .zp-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .zp-header {
    display: grid;
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 1080px);
    gap: 8px;
  }

  .zp-brand img {
    width: min(210px, 62vw);
    height: auto;
    max-height: 54px;
  }

  .zp-nav {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    overflow: visible;
    gap: 8px 12px;
    font-size: 11px;
  }

  .zp-hero {
    min-height: 460px;
    align-items: center;
  }

  .zp-hero-bg {
    width: min(520px, 140vw);
    height: auto;
    inset: 18px auto auto 50%;
    opacity: 0.14;
    object-fit: contain;
    transform: translateX(-50%);
  }

  .zp-hero-content {
    max-width: 390px;
    margin: 0 auto;
    padding-inline: 20px;
    padding-block: 44px;
    text-align: center;
  }

  .fieldproof-page h1 {
    font-size: 40px;
    line-height: 1;
  }

  .zp-hero-copy {
    font-size: 16px;
  }

  .zp-hero-note {
    font-size: 14px;
  }

  .zp-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .zp-actions .zp-button {
    width: 100%;
  }

  .zp-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .zp-footer-product-logo {
    width: 132px;
  }
}

.craft-page {
  --craft-teal: #064653;
  --craft-teal-2: #0c5d6a;
  --craft-coral: #f15a3b;
  --craft-gold: #f3a72f;
  --craft-mint: #2c9f95;
  --craft-ink: #173344;
  --craft-muted: #687887;
  --craft-line: #dde5e6;
  --craft-soft: #f7faf9;
  --craft-warm: #fffaf5;
  --craft-shadow: 0 18px 45px rgba(6, 70, 83, 0.16);
  color: var(--craft-ink);
  background: #fff;
  line-height: 1.5;
}

.craft-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - clamp(32px, 10vw, 180px)), 1120px);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--craft-line);
  backdrop-filter: blur(12px);
}

.craft-brand img {
  display: block;
  width: min(330px, 44vw);
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
}

.craft-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--craft-muted);
  font-size: 14px;
  font-weight: 800;
}

.craft-nav a {
  text-decoration: none;
}

.craft-nav a:hover {
  color: var(--craft-teal);
}

.craft-hero {
  position: relative;
  width: min(calc(100% - clamp(32px, 10vw, 180px)), 1120px);
  min-height: clamp(440px, 42vw, 620px);
  display: grid;
  align-items: end;
  margin: 0 auto;
  overflow: hidden;
  background: var(--craft-teal);
}

.craft-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.craft-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 70, 83, 0.92) 0%, rgba(6, 70, 83, 0.7) 42%, rgba(6, 70, 83, 0.05) 100%),
    linear-gradient(0deg, rgba(6, 70, 83, 0.88) 0%, rgba(6, 70, 83, 0) 48%);
}

.craft-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 30px 48px;
  color: #fff;
}

.craft-kicker {
  margin: 0 0 10px;
  color: var(--craft-coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.craft-page h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6.5vw, 74px);
  line-height: 0.98;
}

.craft-page h2 {
  margin-bottom: 18px;
  color: var(--craft-teal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.craft-page h3 {
  color: var(--craft-teal);
  font-size: 22px;
}

.craft-hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.craft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.craft-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.craft-button.primary {
  color: #fff;
  background: var(--craft-coral);
}

.craft-button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.craft-button.dark {
  background: var(--craft-teal);
}

.craft-button.outline {
  color: var(--craft-teal);
  background: #fff;
  border: 1px solid var(--craft-line);
}

.craft-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.craft-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.craft-band {
  background: var(--craft-soft);
  border-block: 1px solid var(--craft-line);
}

.craft-intro {
  padding: 42px 0;
}

.craft-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

.craft-split > div:last-child p {
  color: var(--craft-muted);
  font-size: 19px;
}

.craft-split > div:last-child p:last-child {
  margin-bottom: 0;
  color: var(--craft-teal);
  font-weight: 900;
}

.craft-section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.craft-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.craft-feature-grid.expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.craft-card,
.craft-cta {
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 70, 83, 0.04);
}

.craft-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.craft-card p,
.craft-cta p {
  color: var(--craft-muted);
}

.craft-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--craft-coral);
  background: #fff1ed;
  border: 1px solid #ffd6ca;
  border-radius: 8px;
  font-weight: 900;
}

.craft-screen {
  height: 126px;
  margin-bottom: 18px;
  padding: 10px;
  overflow: hidden;
  color: var(--craft-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.92)),
    #fff;
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(6, 70, 83, 0.1);
}

.screen-bar,
.screen-product,
.screen-field,
.screen-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.screen-bar {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--craft-line);
  color: var(--craft-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-bar strong {
  color: var(--craft-coral);
  text-transform: none;
}

.screen-list {
  display: grid;
  gap: 5px;
}

.screen-list span,
.screen-field,
.screen-product {
  min-height: 24px;
  padding: 5px 8px;
  background: var(--craft-soft);
  border-radius: 8px;
  font-size: 0.8rem;
}

.screen-list b,
.screen-field b,
.screen-product b {
  color: var(--craft-teal);
}

.screen-list.compact span {
  min-height: 24px;
}

.sales-screen .screen-list span:nth-child(3),
.inventory-screen .screen-product:nth-of-type(3),
.expense-screen .screen-field:nth-of-type(4) {
  display: none;
}

.screen-pill {
  display: none;
  width: 100%;
  margin-top: 7px;
  padding: 7px 10px;
  color: #fff;
  background: var(--craft-coral);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.screen-pill.teal {
  background: var(--craft-teal);
}

.screen-product {
  justify-content: flex-start;
  margin-bottom: 6px;
}

.screen-product i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, var(--craft-coral), var(--craft-gold));
  border-radius: 8px;
}

.screen-product div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.screen-product span {
  font-size: 0.8rem;
  font-weight: 900;
}

.screen-product b {
  font-size: 0.72rem;
}

.screen-field {
  margin-bottom: 6px;
}

.screen-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  height: 42px;
  margin-bottom: 7px;
  padding: 7px;
  background: linear-gradient(180deg, rgba(44, 159, 149, 0.12), rgba(44, 159, 149, 0.04));
  border-radius: 8px;
}

.screen-chart i {
  display: block;
  background: var(--craft-mint);
  border-radius: 8px 8px 2px 2px;
}

.screen-chart i:nth-child(1) { height: 28%; }
.screen-chart i:nth-child(2) { height: 52%; }
.screen-chart i:nth-child(3) { height: 38%; }
.screen-chart i:nth-child(4) { height: 74%; }
.screen-chart i:nth-child(5) { height: 62%; }

.screen-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.screen-calendar span {
  display: grid;
  place-items: center;
  min-height: 30px;
  color: var(--craft-teal);
  background: var(--craft-soft);
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  font-weight: 900;
}

.screen-calendar .active {
  color: #fff;
  background: var(--craft-coral);
  border-color: var(--craft-coral);
}

.screen-qr {
  width: 68px;
  height: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 0 auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--craft-line);
  border-radius: 8px;
}

.screen-qr i {
  display: block;
  background: var(--craft-teal);
  border-radius: 3px;
}

.screen-qr i:nth-child(2),
.screen-qr i:nth-child(4),
.screen-qr i:nth-child(8) {
  background: var(--craft-coral);
}

.craft-workflow {
  padding: clamp(54px, 8vw, 96px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(241, 90, 59, 0.18), transparent 34%),
    linear-gradient(150deg, #043844 0%, #064653 62%, #0c5d6a 100%);
}

.craft-workflow h2 {
  color: #fff;
}

.craft-workflow .craft-kicker {
  color: #ffb29d;
}

.craft-steps {
  display: grid;
  gap: 16px;
}

.craft-steps p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78) !important;
}

.craft-steps strong {
  color: #fff;
}

.craft-audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.craft-audience-list span {
  padding: 10px 14px;
  color: var(--craft-teal);
  background: #fff;
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  font-weight: 900;
}

.craft-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(54px, 8vw, 96px);
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: 30px;
}

.craft-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.craft-phone-gallery .phone-shot {
  background: #064653;
  border-color: rgba(241, 90, 59, 0.2);
}

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

.craft-price-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(6, 70, 83, 0.04);
}

.craft-price-card.featured {
  border-top: 7px solid var(--craft-coral);
}

.craft-price-card h3 {
  color: var(--craft-teal);
}

.craft-price-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--craft-muted);
}

.craft-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: #fff !important;
  background: var(--craft-coral);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.craft-note {
  padding-top: 0;
}

.craft-note p {
  margin: 0;
  padding: clamp(22px, 4vw, 32px);
  color: var(--craft-muted);
  background: #fff;
  border: 1px solid var(--craft-line);
  border-left: 7px solid var(--craft-coral);
  border-radius: 8px;
}

.download-page {
  min-height: 100vh;
}

.download-gate {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    linear-gradient(115deg, rgba(6, 70, 83, 0.94) 0%, rgba(10, 86, 98, 0.88) 48%, rgba(15, 31, 51, 0.9) 100%),
    var(--craft-teal);
}

.download-panel {
  width: min(680px, calc(100% - 40px));
  padding: clamp(28px, 5vw, 44px);
  color: var(--craft-ink);
  background: #fff;
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  box-shadow: var(--craft-shadow);
}

.download-panel h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--craft-teal);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.download-panel p:not(.craft-kicker) {
  color: var(--craft-muted);
  font-size: 1.1rem;
}

.download-error {
  padding: 12px 14px;
  color: #8f1111 !important;
  background: #fff1f1;
  border: 1px solid #ffd2d2;
  border-radius: 8px;
  font-weight: 800;
}

.download-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.download-form label {
  color: var(--craft-teal);
  font-weight: 900;
}

.download-form input {
  min-height: 48px;
  padding: 11px 12px;
  color: var(--craft-ink);
  border: 1px solid var(--craft-line);
  border-radius: 8px;
  font: inherit;
  font-size: 1.15rem;
}

.download-form input:focus {
  outline: 3px solid rgba(241, 90, 59, 0.24);
  border-color: var(--craft-coral);
}

.craft-footer {
  padding: 28px 0;
  color: #d4e0e3;
  background: var(--craft-teal);
}

.craft-footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.craft-footer-logo {
  width: 86px;
  height: auto;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
}

.craft-footer p {
  margin: 0;
}

.craft-footer-maker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px !important;
  color: #fff;
  font-weight: 900;
}

.craft-footer-maker a {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.craft-footer-maker img {
  width: 24px;
  height: 24px;
  padding: 2px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .craft-header {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    width: min(calc(100% - 32px), 1120px);
    min-height: 0;
    padding: 8px 0;
  }

  .craft-brand img {
    width: min(260px, 40vw);
    max-height: 58px;
  }

  .craft-nav {
    flex: 1;
    width: auto;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .craft-nav a {
    flex: 0 0 auto;
  }

  .craft-hero {
    width: min(calc(100% - 32px), 1120px);
    min-height: 560px;
    background:
      radial-gradient(circle at 88% 20%, rgba(241, 90, 59, 0.15), transparent 32%),
      linear-gradient(160deg, #043844 0%, #064653 60%, #0c5d6a 100%);
  }

  .craft-hero-bg {
    opacity: 0.16;
    object-fit: contain;
    object-position: center top;
  }

  .craft-hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 56, 68, 0.98) 0%, rgba(4, 56, 68, 0.88) 58%, rgba(4, 56, 68, 0.72) 100%);
  }

  .craft-split,
  .craft-screenshot-hero .craft-hero-content,
  .craft-feature-grid,
  .craft-feature-grid.expanded,
  .craft-pricing-grid,
  .craft-cta {
    grid-template-columns: 1fr;
  }

  .craft-cta-actions {
    justify-content: flex-start;
  }

  .craft-cta .craft-button,
  .craft-cta-actions {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .craft-header {
    display: grid;
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 1120px);
    gap: 8px;
  }

  .craft-brand img {
    width: min(230px, 68vw);
    max-height: 54px;
  }

  .craft-nav {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    overflow: visible;
    gap: 8px 12px;
    font-size: 11px;
  }

  .craft-hero {
    min-height: 500px;
    align-items: center;
  }

  .craft-hero-bg {
    width: min(680px, 170vw);
    height: auto;
    inset: 18px auto auto 50%;
    opacity: 0.13;
    object-fit: contain;
    transform: translateX(-50%);
  }

  .craft-hero-content {
    max-width: 390px;
    margin: 0 auto;
    padding-inline: 20px;
    padding-block: 44px;
    text-align: center;
  }

  .craft-page h1 {
    font-size: 39px;
    line-height: 1;
  }

  .craft-hero-copy {
    font-size: 16px;
  }

  .craft-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .craft-actions .craft-button {
    width: 100%;
  }

  .craft-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Badge Maker product page */
.badge-page {
  --badge-navy: #0f1f33;
  --badge-red: #e7131a;
  --badge-gold: #d6a840;
  --badge-ink: #132033;
  --badge-muted: #4d607a;
  --badge-line: #ccd6e3;
  --badge-bg: #f4f7fb;
  background: var(--badge-bg);
  color: var(--badge-ink);
}

.badge-mark {
  width: min(30vw, 300px);
  max-height: 50px;
  object-fit: contain;
}

.badge-container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.badge-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, rgba(15, 31, 51, 0.98), rgba(15, 31, 51, 0.9) 58%, rgba(122, 19, 24, 0.84)), var(--badge-navy);
}

.badge-hero-bg {
  position: absolute;
  inset: auto -8vw -12vw auto;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 45% 45%, rgba(255, 255, 255, 0.08), transparent 58%), linear-gradient(135deg, rgba(231, 19, 26, 0.24), rgba(214, 168, 64, 0.18));
  transform: rotate(-11deg);
  opacity: 0.85;
}

.badge-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  padding: clamp(54px, 7vw, 90px) 0;
}

.badge-kicker {
  margin: 0 0 12px;
  color: var(--badge-red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge-hero h1,
.badge-section-heading h2,
.badge-split h2,
.badge-cta h2,
.badge-requirements h2 {
  letter-spacing: 0;
}

.badge-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 0.98;
}

.badge-hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.badge-actions,
.badge-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-actions {
  margin-top: 28px;
}

.badge-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--badge-navy);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
}

.badge-button.primary {
  color: #fff;
  background: var(--badge-red);
}

.badge-button.secondary,
.badge-button.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.badge-button.dark {
  color: #fff;
  background: var(--badge-navy);
}

.badge-button.outline.dark {
  color: var(--badge-navy);
  background: #fff;
  border-color: var(--badge-navy);
}

.badge-download-gate {
  background: linear-gradient(115deg, rgba(15, 31, 51, 0.96), rgba(122, 19, 24, 0.84)), var(--badge-navy);
}

.badge-download-panel h1 {
  color: var(--badge-navy);
}

.badge-band {
  background: #fff;
  border-block: 1px solid var(--badge-line);
}

.badge-section,
.badge-split,
.badge-workflow {
  padding-block: clamp(56px, 8vw, 98px);
}

.badge-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.badge-split p,
.badge-card p,
.badge-steps p,
.badge-requirements li,
.badge-cta p {
  color: var(--badge-muted);
  line-height: 1.65;
}

.badge-split h2,
.badge-section-heading h2,
.badge-cta h2,
.badge-requirements h2 {
  max-width: 760px;
  margin: 0;
  color: var(--badge-ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.badge-section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.badge-card,
.badge-shot,
.badge-requirements,
.badge-cta {
  background: #fff;
  border: 1px solid var(--badge-line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(15, 31, 51, 0.04);
}

.badge-card {
  padding: 24px;
}

.badge-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--badge-red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.badge-card h3 {
  margin: 0 0 10px;
  color: var(--badge-ink);
}

.badge-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.badge-shot {
  margin: 0;
  padding: 12px;
  overflow: hidden;
}

.badge-shot.screenshot-pop {
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.badge-shot.screenshot-pop:hover,
.badge-shot.screenshot-pop:focus-visible {
  border-color: rgba(231, 19, 26, 0.45);
  box-shadow: 0 22px 54px rgba(15, 31, 51, 0.18);
  transform: translateY(-2px);
}

.badge-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.badge-shot.tall img {
  max-height: 620px;
  object-fit: contain;
  background: #fff;
}

.badge-shot.wide {
  grid-column: 1 / -1;
}

.badge-workflow {
  color: #fff;
  background: var(--badge-navy);
}

.badge-workflow .badge-kicker,
.badge-workflow h2 {
  color: #fff;
}

.badge-steps {
  display: grid;
  gap: 14px;
}

.badge-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.badge-steps strong {
  color: #fff;
}

.badge-requirements {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 30px;
  padding: clamp(28px, 4vw, 40px);
}

.badge-requirements ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.badge-cta {
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: clamp(28px, 4vw, 40px);
  border-left: 7px solid var(--badge-red);
}

.secstaff-page {
  --sec-navy: #061a33;
  --sec-navy-2: #0e2a4f;
  --sec-red: #e30613;
  --sec-red-dark: #b90510;
  --sec-ink: #061a33;
  --sec-muted: #68717d;
  --sec-line: #e6eaf0;
  --sec-soft: #f5f7fa;
  --sec-green: #16a34a;
  --sec-shadow: 0 18px 44px rgba(6, 26, 51, 0.16);
  color: var(--sec-ink);
  background: #fbfcfe;
  line-height: 1.5;
}

.sec-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - clamp(32px, 10vw, 180px)), 1120px);
  min-height: 72px;
  margin: 0 auto;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--sec-line);
  backdrop-filter: blur(12px);
}

.sec-brand img {
  display: block;
  width: min(300px, 42vw);
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.sec-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--sec-muted);
  font-size: 14px;
  font-weight: 800;
}

.sec-nav a {
  text-decoration: none;
}

.sec-nav a:hover {
  color: var(--sec-navy);
}

.sec-hero {
  width: min(calc(100% - clamp(32px, 10vw, 180px)), 1120px);
  min-height: clamp(500px, 42vw, 640px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(227, 6, 19, 0.18), transparent 34%),
    linear-gradient(145deg, #031225 0%, #061a33 58%, #0e2a4f 100%);
  overflow: hidden;
}

.sec-hero-content {
  max-width: 720px;
}

.sec-kicker {
  margin: 0 0 10px;
  color: var(--sec-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secstaff-page h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.98;
}

.secstaff-page h2 {
  margin-bottom: 18px;
  color: var(--sec-navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.secstaff-page h3 {
  color: var(--sec-navy);
  font-size: 22px;
}

.sec-hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.sec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sec-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.sec-button.primary {
  color: #fff;
  background: var(--sec-red);
}

.sec-button.primary:hover {
  background: var(--sec-red-dark);
}

.sec-button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.sec-button.dark {
  background: var(--sec-navy);
}

.sec-button.outline.dark {
  color: var(--sec-navy);
  background: #fff;
  border: 1px solid var(--sec-navy);
}

.sec-hero-panel {
  display: flex;
  justify-content: center;
}

.sec-dashboard {
  width: min(100%, 390px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.sec-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.sec-dashboard-head strong {
  color: #fff;
}

.sec-shift-card {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 16px;
  color: var(--sec-ink);
  background: #fff;
  border-radius: 10px;
}

.sec-shift-card.active {
  border-left: 6px solid var(--sec-red);
}

.sec-shift-card span {
  color: var(--sec-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sec-shift-card strong {
  color: var(--sec-navy);
}

.sec-shift-card p {
  margin: 0;
  color: var(--sec-muted);
  font-size: 0.92rem;
}

.sec-map-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.sec-map-strip i {
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 46%, rgba(6, 26, 51, 0.22) 47% 53%, transparent 54%),
    #eef4fb;
}

.sec-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.sec-section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.sec-band {
  background: var(--sec-soft);
  border-block: 1px solid var(--sec-line);
}

.sec-intro {
  padding: 42px 0;
}

.sec-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
}

.sec-split > div:last-child p {
  color: var(--sec-muted);
  font-size: 19px;
}

.sec-split > div:last-child p:last-child {
  margin-bottom: 0;
  color: var(--sec-navy);
  font-weight: 900;
}

.sec-section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.sec-card,
.sec-cta {
  border: 1px solid var(--sec-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 26, 51, 0.04);
}

.sec-card {
  padding: 24px;
}

.sec-card p,
.sec-cta p {
  color: var(--sec-muted);
}

.sec-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--sec-red);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 8px;
  font-weight: 900;
}

.sec-workflow {
  padding: clamp(54px, 8vw, 96px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(227, 6, 19, 0.18), transparent 34%),
    linear-gradient(150deg, #031225 0%, #061a33 62%, #0e2a4f 100%);
}

.sec-workflow h2 {
  color: #fff;
}

.sec-workflow .sec-kicker {
  color: #ff9aa2;
}

.sec-steps {
  display: grid;
  gap: 16px;
}

.sec-steps p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78) !important;
}

.sec-steps strong {
  color: #fff;
}

.sec-audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sec-audience-list span {
  padding: 10px 14px;
  color: var(--sec-navy);
  background: #fff;
  border: 1px solid var(--sec-line);
  border-radius: 8px;
  font-weight: 900;
}

.sec-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(54px, 8vw, 96px);
  margin-bottom: clamp(54px, 8vw, 96px);
  padding: 30px;
}

.sec-footer {
  padding: 28px 0;
  color: #c9d3e2;
  background: var(--sec-navy);
}

.sec-footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sec-footer-logo {
  width: 170px;
  height: auto;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
}

.sec-footer p {
  margin: 0;
}

.sec-footer-maker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px !important;
  color: #fff;
  font-weight: 900;
}

.sec-footer-maker img {
  width: 24px;
  height: 24px;
  padding: 2px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .badge-mark {
    display: none;
  }

  .badge-hero-grid,
  .badge-split,
  .badge-requirements {
    grid-template-columns: 1fr;
  }

  .badge-feature-grid,
  .badge-gallery {
    grid-template-columns: 1fr;
  }

  .badge-shot.wide {
    grid-column: auto;
  }

  .badge-hero {
    min-height: auto;
  }

  .badge-hero-grid {
    padding-block: 44px;
  }

  .badge-hero h1 {
    font-size: 42px;
  }

  .badge-cta {
    display: grid;
  }

  .badge-cta .badge-button {
    width: 100%;
  }

  .badge-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sec-header {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    width: min(calc(100% - 32px), 1120px);
    min-height: 0;
    padding: 8px 0;
  }

  .sec-brand img {
    width: min(250px, 40vw);
    max-height: 58px;
  }

  .sec-nav {
    flex: 1;
    width: auto;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .sec-nav a {
    flex: 0 0 auto;
  }

  .sec-hero,
  .sec-split,
  .sec-feature-grid,
  .sec-cta {
    grid-template-columns: 1fr;
  }

  .sec-hero {
    width: min(calc(100% - 32px), 1120px);
  }

  .sec-cta .sec-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .sec-header {
    display: grid;
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 1120px);
    gap: 8px;
  }

  .sec-brand img {
    width: min(220px, 68vw);
    max-height: 54px;
  }

  .sec-nav {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    overflow: visible;
    gap: 8px 12px;
    font-size: 11px;
  }

  .sec-hero {
    min-height: auto;
    padding: 42px 20px;
  }

  .sec-hero-content {
    text-align: center;
  }

  .secstaff-page h1 {
    font-size: 39px;
    line-height: 1;
  }

  .sec-hero-copy {
    font-size: 16px;
  }

  .sec-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .sec-actions .sec-button {
    width: 100%;
  }

  .sec-dashboard {
    padding: 12px;
  }

  .sec-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Shared product-page shell keeps app pages close to the main Z-Co site. */
.product-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 1fr);
}

.product-header .brand {
  justify-self: start;
}

.product-header nav {
  justify-self: end;
}

.product-mark {
  justify-self: center;
  max-width: min(230px, 22vw);
  max-height: 46px;
  object-fit: contain;
}

.fieldproof-page,
.craft-page,
.secstaff-page {
  background: #f6f8fb;
}

.zp-hero,
.craft-hero,
.sec-hero {
  width: 100%;
  margin: 0;
  border-radius: 0;
}

.zp-hero,
.craft-hero {
  min-height: 590px;
  align-items: center;
}

.zp-hero-content,
.craft-hero-content {
  width: var(--frame);
  max-width: var(--frame);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) 0;
}

.zp-hero-overlay,
.craft-hero-overlay {
  background:
    linear-gradient(115deg, rgba(8, 19, 33, 0.98) 0%, rgba(15, 31, 51, 0.88) 48%, rgba(15, 31, 51, 0.34) 100%),
    linear-gradient(0deg, rgba(15, 31, 51, 0.7) 0%, rgba(15, 31, 51, 0) 52%);
}

.craft-hero-overlay {
  background:
    linear-gradient(115deg, rgba(6, 70, 83, 0.96) 0%, rgba(10, 86, 98, 0.86) 48%, rgba(10, 86, 98, 0.28) 100%),
    linear-gradient(0deg, rgba(6, 70, 83, 0.66) 0%, rgba(6, 70, 83, 0) 52%);
}

.sec-hero {
  min-height: 590px;
  padding: clamp(36px, 5vw, 56px) max(18px, calc((100vw - 1180px) / 2));
}

.zp-container,
.craft-container,
.sec-container {
  width: var(--frame);
}

.zp-section,
.craft-section,
.sec-section,
.craft-workflow,
.sec-workflow {
  padding: clamp(58px, 8vw, 96px) 0;
}

.zp-intro,
.craft-intro,
.sec-intro {
  padding: 44px 0;
}

.zp-cta-section,
.craft-cta,
.sec-cta {
  margin-top: clamp(58px, 8vw, 96px);
  margin-bottom: clamp(58px, 8vw, 96px);
}

.zp-cta-section {
  padding: clamp(26px, 4vw, 38px);
}

.craft-cta {
  padding: clamp(26px, 4vw, 38px);
}

.zp-footer,
.craft-footer,
.sec-footer {
  background: var(--navy);
}

@media (max-width: 860px) {
  .product-header {
    display: flex;
  }

  .product-mark {
    display: none;
  }

  .product-header nav {
    justify-content: space-between;
  }

  .zp-hero,
  .craft-hero,
  .sec-hero {
    width: 100%;
    min-height: auto;
  }

  .zp-hero-content,
  .craft-hero-content,
  .sec-hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .sec-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .product-header nav {
    flex-wrap: wrap;
  }
}

/* Z-Co legal/support pages and PC Care product page. */
.app-card.pc-care,
.release-card.pc-care {
  border-top-color: #2f7fb3;
}

.pc-care-detail {
  color: #fff;
  background: #11314d;
}

.pc-care-panel {
  display: grid;
  gap: 14px;
  width: min(100%, 460px);
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pc-care-panel img {
  width: 100%;
  max-width: 340px;
}

.pc-care-panel span {
  display: block;
  padding: 10px 12px;
  background: #f4f8fc;
  border-left: 4px solid #2f7fb3;
  border-radius: 6px;
  font-weight: 800;
}

.legal-hero {
  padding: clamp(64px, 9vw, 116px) 0 clamp(34px, 5vw, 62px);
  color: #fff;
  background: linear-gradient(120deg, #081b33, #143553);
}

.legal-container {
  width: var(--frame);
  margin: 0 auto;
}

.legal-page {
  padding: clamp(42px, 7vw, 86px) 0;
}

.legal-page article {
  max-width: 860px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 31, 51, 0.08);
}

.legal-page h2 {
  margin-top: 26px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page a {
  color: var(--red);
  font-weight: 800;
}

.support-page ul {
  padding-left: 22px;
}

.pc-care-page {
  background: #f5f8fb;
}

.pc-container {
  width: var(--frame);
  margin: 0 auto;
}

.pc-hero {
  padding: clamp(56px, 8vw, 104px) 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 24, 42, 0.98), rgba(20, 59, 84, 0.94)),
    #0f1f33;
}

.pc-hero-grid,
.pc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.pc-kicker {
  margin: 0 0 12px;
  color: #67c4ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pc-hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #67c4ff;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.pc-button.primary {
  background: var(--red);
  border-color: var(--red);
}

.pc-button.secondary,
.pc-button.outline {
  background: transparent;
}

.pc-button.dark {
  color: var(--ink);
}

.pc-button.primary.dark {
  color: #fff;
}

.pc-dashboard {
  overflow: hidden;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pc-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -22px -22px 24px;
  padding: 14px 18px;
  background: #edf3f9;
  border-bottom: 1px solid var(--line);
}

.pc-window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d8dee8;
}

.pc-window-bar span:first-child {
  background: var(--red);
}

.pc-window-bar strong {
  margin-left: auto;
  font-size: 0.86rem;
}

.pc-health-ring {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  color: #102743;
  background:
    radial-gradient(circle at center, #fff 56%, transparent 57%),
    conic-gradient(#2f7fb3 0 92%, #e6edf5 92% 100%);
  border-radius: 50%;
  font-size: 2.35rem;
  font-weight: 900;
}

.pc-check-list {
  display: grid;
  gap: 10px;
}

.pc-check-list p {
  margin: 0;
  padding: 12px;
  background: #f6f9fc;
  border-left: 4px solid #2f7fb3;
  border-radius: 6px;
}

.pc-band {
  padding: clamp(50px, 7vw, 88px) 0;
  background: #fff;
}

.pc-section,
.pc-workflow {
  padding: clamp(54px, 8vw, 96px) 0;
}

.pc-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.pc-card {
  min-width: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pc-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: #2f7fb3;
  font-weight: 900;
}

.pc-workflow {
  color: #fff;
  background: #0f1f33;
}

.pc-steps {
  display: grid;
  gap: 12px;
}

.pc-steps p {
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.pc-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .pc-hero-grid,
  .pc-split,
  .pc-feature-grid,
  .pc-cta {
    grid-template-columns: 1fr;
  }

  .pc-cta .pc-button {
    width: 100%;
  }
}

/* Shared verified download and account pages. */
.download-kicker {
  color: var(--z-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.download-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.download-form select {
  width: 100%;
  border: 1px solid #bfccdc;
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.download-small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 16px;
}

.pc-download-panel {
  border-top: 6px solid #145f66;
}

.account-page .download-panel {
  max-width: 980px;
}

.account-panel h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin: 32px 0 12px;
}

.account-summary-grid,
.account-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}

.account-summary-grid section,
.account-preview-grid section {
  min-width: 0;
  padding: 16px;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #f7faff;
}

.account-summary-grid strong {
  display: block;
  color: var(--z-red);
  font-size: 2rem;
  line-height: 1;
}

.account-summary-grid span,
.account-preview-grid p {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.account-preview-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.account-suite-list {
  margin: 22px 0 4px;
  padding: 16px;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #fff;
}

.account-suite-list h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
}

.account-suite-list > p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.account-suite-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-suite-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #edf2f7;
}

.account-suite-list li:first-child {
  border-top: 0;
}

.account-suite-list li::before {
  display: none;
}

.account-suite-list strong {
  color: var(--ink);
}

.account-suite-list span {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.account-download-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 10px;
  padding: 20px;
  border: 1px solid rgba(216, 30, 35, 0.24);
  border-left: 6px solid var(--z-red);
  border-radius: 8px;
  background: #fff7f7;
}

.account-download-ready h2 {
  margin: 4px 0 8px;
}

.account-download-ready p {
  margin: 0;
}

.account-table-wrap {
  overflow-x: auto;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #fff;
}

.account-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.account-table th,
.account-table td {
  border-bottom: 1px solid #e4ebf3;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.account-table th {
  background: #f4f7fb;
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.account-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .account-summary-grid,
  .account-preview-grid {
    grid-template-columns: 1fr;
  }

  .account-download-ready {
    align-items: stretch;
    flex-direction: column;
  }

  .account-suite-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .account-suite-list span {
    text-align: left;
  }

  .account-download-ready .button {
    width: 100%;
  }
}
