:root {
  /*
   * Responsive layout scale tokens.
   * Keep page-level spacing and size constraints centralized so all landing pages
   * (home + stub/detail pages) adapt consistently across desktop resolutions.
   */
  --text-primary: #13264b;
  --text-muted: #60708d;
  --brand-red: #ff4c41;
  --brand-blue: #18a8e2;
  --brand-navy: #0b2147;
  --shadow-soft: 0 20px 44px rgba(17, 43, 87, 0.12);
  --layout-inline-pad: clamp(16px, 2.2vw, 34px);
  --layout-content-max: 1760px;
  --hero-copy-max: clamp(460px, 36vw, 760px);
  --hero-laptop-max: clamp(560px, 43vw, 920px);
  --feature-button-max: clamp(170px, 13vw, 260px);
  --laptop-screen-ratio: 16 / 10;
  --main-stack-gap: clamp(8px, 1.1vh, 16px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(24, 168, 226, 0.18), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(255, 76, 65, 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(15, 131, 223, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 56%, #e9f2fd 100%);
}

button,
a {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 88px;
  overflow-x: hidden;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: 94px;
  left: -88px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 160, 244, 0.18), rgba(67, 160, 244, 0));
}

.page-shell::after {
  top: 180px;
  left: -10px;
  width: 74%;
  height: 360px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(232, 242, 255, 0.56)),
    repeating-linear-gradient(145deg, rgba(24, 168, 226, 0.09) 0 3px, transparent 3px 34px),
    repeating-linear-gradient(-145deg, rgba(255, 76, 65, 0.05) 0 2px, transparent 2px 46px);
  clip-path: polygon(0 8%, 72% 0, 100% 56%, 18% 100%);
  opacity: 0.9;
}

.site-header,
.hero-section,
.features-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 4px var(--layout-inline-pad);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(188, 201, 220, 0.35);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 270px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  position: relative;
  color: #1b2e52;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff654b, #f93034);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--main-stack-gap);
  min-height: 0;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand-blue), #0f83df);
  box-shadow: 0 10px 24px rgba(20, 130, 207, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(20, 130, 207, 0.32);
  filter: saturate(1.03);
}

.nav-cta {
  padding: 8px 14px;
  font-size: 0.77rem;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(24, 168, 226, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 245, 255, 0.94));
  box-shadow: 0 10px 24px rgba(17, 43, 87, 0.08);
  white-space: nowrap;
}

.header-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  box-shadow: 0 0 0 5px rgba(24, 168, 226, 0.1);
  flex: 0 0 auto;
}

.header-badge-text {
  color: #1b2e52;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.94fr) minmax(540px, 1.06fr);
  align-items: center;
  justify-content: center;
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
  gap: clamp(14px, 1.8vw, 34px);
  padding: 18px var(--layout-inline-pad) 4px;
}

.hero-copy {
  max-width: var(--hero-copy-max);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0;
  max-width: 500px;
  color: var(--text-primary);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-description {
  margin: 12px 0 20px;
  max-width: 440px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-cta {
  min-width: 176px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.laptop-image {
  display: block;
  width: min(100%, var(--hero-laptop-max));
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.features-section {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 28px);
  padding: 0 var(--layout-inline-pad) 8px;
  align-items: center;
  justify-items: center;
}

.feature-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--feature-button-max);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.feature-button:hover,
.feature-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.03);
}

.feature-art {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(22, 42, 85, 0.12));
}

.site-footer {
  position: relative;
  display: grid;
  grid-auto-rows: min-content;
  justify-items: center;
  align-content: center;
  flex: 0 0 auto;
  min-height: 0;
  gap: 1px;
  padding: 2px 16px 3px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, #0f2d59, #091f44);
}

.site-footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.15;
}

.site-footer > #contact {
  display: none;
}

.footer-map {
  position: absolute;
  inset: 0;
  display: none;
}

.footer-links {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  font-size: 0.84rem;
  line-height: 1.1;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-link-separator {
  color: rgba(255, 255, 255, 0.62);
}

.stub-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 4vh, 52px) var(--layout-inline-pad) clamp(44px, 5vh, 64px);
}

.stub-panel {
  width: min(100%, clamp(760px, 72vw, 1040px));
  padding: 44px 40px;
  border: 1px solid rgba(188, 201, 220, 0.45);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.lead-form-panel {
  width: min(100%, clamp(860px, 76vw, 1180px));
  text-align: left;
}

.contact-panel {
  width: min(100%, clamp(920px, 78vw, 1240px));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.contact-copy {
  padding-top: 10px;
}

.stub-kicker {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stub-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.stub-description {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.lead-form-description {
  max-width: 640px;
  margin-left: 0;
}

.contact-description {
  max-width: 540px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 420px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(24, 168, 226, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.94));
}

.contact-method-label {
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-method-link {
  color: var(--brand-navy);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-method-link:hover,
.contact-method-link:focus-visible {
  text-decoration: underline;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  box-shadow: 0 6px 14px rgba(24, 168, 226, 0.22);
}

.contact-card {
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(188, 201, 220, 0.46);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.96));
  box-shadow: 0 18px 40px rgba(17, 43, 87, 0.08);
}

.contact-card .lead-form {
  margin-top: 0;
}

.about-main {
  align-items: center;
}

.about-panel {
  width: min(100%, clamp(920px, 78vw, 1260px));
  text-align: left;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.about-copy {
  min-width: 0;
}

.about-description {
  max-width: 680px;
  margin-left: 0;
}

.about-actions {
  justify-content: flex-start;
}

.about-summary-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(24, 168, 226, 0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 247, 255, 0.96));
  box-shadow: 0 18px 40px rgba(17, 43, 87, 0.08);
}

.about-summary-label {
  margin: 0 0 14px;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-summary-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-summary-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 0.96rem;
  line-height: 1.55;
}

.about-summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), #0f83df);
  box-shadow: 0 6px 14px rgba(24, 168, 226, 0.22);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.about-card {
  padding: 28px 28px 26px;
  border: 1px solid rgba(188, 201, 220, 0.42);
  border-radius: 24px;
  background: #ffffff;
}

.about-card-wide {
  grid-column: 1 / -1;
}

.about-card-kicker {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-card-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.about-card-text {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-feature-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
  box-shadow: 0 6px 14px rgba(24, 168, 226, 0.22);
}

.lead-form {
  margin-top: 28px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  margin-top: 16px;
}

.contact-inquiry-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  align-items: end;
}

.contact-inquiry-row .form-field {
  margin: 0;
}

.contact-mailing-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  justify-self: start;
  padding: 0;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.contact-mailing-list input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0f83df;
}

.form-label {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(143, 163, 191, 0.6);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 0.96rem;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(24, 168, 226, 0.88);
  box-shadow: 0 0 0 4px rgba(24, 168, 226, 0.12);
}

.form-input::placeholder {
  color: #8391aa;
}

.form-textarea {
  min-height: 170px;
  resize: vertical;
  font-family: inherit;
}

.lead-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.form-submit {
  min-width: 112px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: 0 10px 24px rgba(20, 130, 207, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #0f8a54;
}

.form-status.is-error {
  color: #b42318;
}

.stub-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(24, 168, 226, 0.22);
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(24, 168, 226, 0.42);
  background: rgba(255, 255, 255, 0.96);
}

/*
 * Large-screen breakpoint: preserve composition on high-resolution desktop/ultrawide
 * displays where fixed-size art can otherwise look undersized.
 */
@media (min-width: 1600px) {
  .hero-section {
    grid-template-columns: minmax(520px, 0.92fr) minmax(700px, 1.08fr);
  }

  .feature-button {
    max-width: clamp(210px, 13.6vw, 300px);
  }

  .stub-panel {
    width: min(100%, clamp(840px, 68vw, 1120px));
  }

  .lead-form-panel {
    width: min(100%, clamp(920px, 72vw, 1240px));
  }

  .contact-panel {
    width: min(100%, clamp(980px, 74vw, 1320px));
  }

  .about-panel {
    width: min(100%, clamp(980px, 74vw, 1340px));
  }
}

@media (max-width: 1280px) {
  .page-shell {
    padding-top: 124px;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .laptop-image {
    width: min(100%, clamp(560px, 66vw, 840px));
  }

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

@media (max-width: 980px) {
  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-inquiry-row {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .contact-mailing-list {
    min-height: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-top: 0;
  }

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

  .features-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-button {
    max-width: clamp(200px, 37vw, 320px);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 172px;
  }

  .site-header,
  .hero-section,
  .features-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .site-footer {
    gap: 1px;
    min-height: 0;
    padding: 2px 12px 3px;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .brand-logo {
    width: 296px;
  }

  .eyebrow {
    font-size: 0.94rem;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

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

  .laptop-image {
    width: min(100%, clamp(300px, 92vw, 560px));
  }

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

  .stub-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stub-panel {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .contact-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .about-card,
  .about-summary-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .lead-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit,
  .lead-form-actions .secondary-link {
    width: 100%;
  }

  .feature-art {
    max-width: none;
  }

  .contact-method {
    padding: 16px 18px;
  }

  .about-actions {
    align-items: stretch;
  }

  .about-actions .primary-button,
  .about-actions .secondary-link {
    width: 100%;
  }
}

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

/* Features Page */

.features-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3.5vh, 44px) var(--layout-inline-pad);
  gap: clamp(36px, 4vw, 56px);
}

.features-hero {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
}

.features-hero-copy {
  max-width: clamp(740px, 80vw, 1000px);
  margin: 0 auto;
  text-align: center;
}

.features-hero-description {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.features-cta {
  margin-top: 20px;
}

.features-benefits {
  width: min(100%, var(--layout-content-max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin: 0 auto;
}

.features-benefit-card {
  padding: 26px 22px;
  border: 1px solid rgba(188, 201, 220, 0.38);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 43, 87, 0.06);
}

.benefit-kicker {
  margin: 0 0 10px;
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.benefit-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.22;
  font-weight: 700;
}

.benefit-text {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.features-detailed {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
}

.features-detailed-title {
  margin: 0 0 32px;
  color: var(--text-primary);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-align: center;
}

.features-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 40px;
}

.features-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
  padding: 28px 26px;
  border: 1px solid rgba(188, 201, 220, 0.42);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 43, 87, 0.07);
}

.features-card-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.features-card-header {
  margin-bottom: 18px;
}

.features-card-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  font-weight: 700;
}

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

.features-card-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.features-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), #0f83df);
  box-shadow: 0 6px 14px rgba(24, 168, 226, 0.2);
}

.features-card-button {
  flex: 0 0 min(100%, var(--feature-button-max));
  width: min(100%, var(--feature-button-max));
  max-width: var(--feature-button-max);
  margin-top: 0;
}

.features-detailed-cta {
  padding: 36px 28px;
  border: 1px solid rgba(24, 168, 226, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 248, 255, 0.96));
  text-align: center;
}

.features-detailed-cta p {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.features-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.features-cta-buttons .primary-button,
.features-cta-buttons .secondary-link {
  min-width: fit-content;
}

/* Features Page Responsive */

@media (max-width: 1280px) {
  .features-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .features-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .features-card-button {
    margin-top: 18px;
    width: min(100%, 320px);
    max-width: min(100%, 320px);
  }
}

@media (max-width: 760px) {
  .features-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .features-hero-copy {
    text-align: left;
  }

  .features-card-button {
    margin-top: 14px;
    width: 100%;
    max-width: 280px;
    align-self: center;
  }

  .features-hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .features-cta {
    display: block;
    width: 100%;
  }

  .features-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-benefit-card {
    padding: 22px 18px;
  }

  .features-card {
    padding: 24px 20px;
  }

  .features-card-button {
    width: 100%;
    max-width: 280px;
    align-self: center;
  }

  .features-detailed-title {
    margin-bottom: 24px;
  }

  .features-detailed-cta {
    padding: 28px 20px;
  }

  .features-cta-buttons {
    flex-direction: column;
  }

  .features-cta-buttons .primary-button,
  .features-cta-buttons .secondary-link {
    width: 100%;
  }
 }

/* Manage Dashboard Detail Page */

.manage-dashboard-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3.5vh, 44px) var(--layout-inline-pad) clamp(44px, 5vh, 64px);
  gap: clamp(28px, 3vw, 44px);
}

.manage-dashboard-hero {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
  text-align: center;
}

.manage-dashboard-description {
  max-width: 760px;
}

.manage-dashboard-actions {
  margin-top: 24px;
}

.manage-dashboard-proof,
.manage-dashboard-grid,
.manage-dashboard-cta {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
}

.manage-dashboard-shot {
  padding: 24px 22px;
  border: 1px solid rgba(188, 201, 220, 0.42);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 43, 87, 0.07);
}

.manage-dashboard-shot-primary {
  padding: 24px;
}

.manage-dashboard-shot-compact {
  max-width: min(100%, 520px);
  justify-self: center;
}

.manage-dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(188, 201, 220, 0.46);
  box-shadow: 0 10px 22px rgba(17, 43, 87, 0.12);
  background: #ffffff;
}

.manage-dashboard-caption-wrap {
  margin-top: 16px;
}

.manage-dashboard-caption-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.manage-dashboard-caption-text {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.manage-dashboard-shot-title {
  margin: 16px 0 0;
  color: var(--text-primary);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.28;
}

.manage-dashboard-shot-text {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.manage-dashboard-cta {
  padding: 34px 24px;
  border: 1px solid rgba(24, 168, 226, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 248, 255, 0.96));
  text-align: center;
}

.manage-dashboard-cta p {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}


/* Manage Dashboard Responsive */

@media (max-width: 980px) {
  .manage-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .manage-dashboard-shot-compact {
    max-width: min(100%, 460px);
  }
}

@media (max-width: 760px) {
  .manage-dashboard-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .manage-dashboard-hero {
    text-align: left;
  }

  .manage-dashboard-actions {
    justify-content: flex-start;
  }

  .manage-dashboard-shot,
  .manage-dashboard-shot-primary {
    padding: 18px;
    border-radius: 20px;
  }

  .manage-dashboard-shot-compact {
    max-width: 100%;
  }

  .manage-dashboard-image {
    border-radius: 12px;
  }

  .manage-dashboard-cta {
    padding: 26px 18px;
    text-align: left;
  }

}

/* Coordinate Detail Page */

.coordinate-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3.5vh, 44px) var(--layout-inline-pad) clamp(44px, 5vh, 64px);
  gap: clamp(24px, 3vw, 40px);
}

.coordinate-hero,
.coordinate-callout,
.coordinate-grid,
.coordinate-nonvisual,
.coordinate-cta {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
}

.coordinate-hero {
  text-align: center;
}

.coordinate-description {
  max-width: 820px;
}

.coordinate-actions {
  margin-top: 24px;
}

.coordinate-callout {
  padding: 24px 22px;
  border: 1px solid rgba(24, 168, 226, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 248, 255, 0.96));
}

.coordinate-callout p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
}

.coordinate-grid {
  display: grid;
  gap: 20px;
}

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

.coordinate-grid-timelines {
  grid-template-columns: 1fr;
}

.coordinate-text-cards {
  margin-top: 2px;
}

.coordinate-shot {
  padding: 22px 20px;
  border: 1px solid rgba(188, 201, 220, 0.42);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 43, 87, 0.07);
}

.coordinate-shot-wide {
  padding: 24px;
}

.coordinate-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(188, 201, 220, 0.46);
  box-shadow: 0 10px 22px rgba(17, 43, 87, 0.12);
  background: #ffffff;
}

.coordinate-shot-title {
  margin: 14px 0 0;
  color: var(--text-primary);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.3;
}

.coordinate-shot-text {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.coordinate-cta {
  padding: 32px 24px;
  border: 1px solid rgba(24, 168, 226, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 248, 255, 0.96));
  text-align: center;
}

.coordinate-cta p {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

/* Coordinate Detail Responsive */

@media (max-width: 980px) {
  .coordinate-grid-tooltips {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .coordinate-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .coordinate-hero,
  .coordinate-cta {
    text-align: left;
  }

  .coordinate-actions {
    justify-content: flex-start;
  }

  .coordinate-shot,
  .coordinate-shot-wide,
  .coordinate-callout {
    padding: 18px;
    border-radius: 20px;
  }

  .coordinate-image {
    border-radius: 12px;
  }

  .coordinate-cta {
    padding: 26px 18px;
  }
}

/* Catch + Boost Detail Pages */

.catch-main,
.boost-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3.5vh, 44px) var(--layout-inline-pad) clamp(44px, 5vh, 64px);
  gap: clamp(24px, 3vw, 40px);
}

.mobile-app-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3.5vh, 44px) var(--layout-inline-pad) clamp(44px, 5vh, 64px);
  gap: clamp(24px, 3vw, 40px);
}

.mobile-app-hero,
.mobile-app-proof,
.mobile-app-nonvisual,
.mobile-app-cta {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
}

.mobile-app-hero {
  text-align: center;
}

.mobile-app-description {
  max-width: 860px;
}

.mobile-app-actions {
  margin-top: 24px;
}

.mobile-app-shot {
  padding: 24px 22px;
  border: 1px solid rgba(188, 201, 220, 0.42);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 43, 87, 0.07);
}

.mobile-app-shot-primary {
  padding: 24px;
}

.mobile-device-frame {
  width: min(100%, 380px);
  margin: 0 auto;
  padding: 16px 14px;
  border-radius: 36px;
  border: 1px solid rgba(11, 33, 71, 0.22);
  background: linear-gradient(180deg, #0f274f 0%, #091f44 100%);
  box-shadow: 0 16px 34px rgba(9, 31, 68, 0.24);
}

.mobile-device-frame::before {
  content: '';
  display: block;
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  margin: 2px auto 12px;
}

.mobile-app-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(188, 201, 220, 0.5);
  box-shadow: 0 8px 20px rgba(17, 43, 87, 0.16);
  background: #ffffff;
}

.mobile-app-caption-wrap {
  margin-top: 16px;
  text-align: center;
}

.mobile-app-caption-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.mobile-app-caption-text {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.mobile-app-text-cards {
  margin-top: 2px;
}

.mobile-app-cta {
  padding: 34px 24px;
  border: 1px solid rgba(24, 168, 226, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 248, 255, 0.96));
  text-align: center;
}

.mobile-app-cta p {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.catch-hero,
.catch-proof,
.catch-nonvisual,
.catch-cta,
.boost-hero,
.boost-proof,
.boost-reporting,
.boost-nonvisual,
.boost-cta {
  width: min(100%, var(--layout-content-max));
  margin: 0 auto;
}

.catch-hero,
.boost-hero {
  text-align: center;
}

.catch-description,
.boost-description {
  max-width: 800px;
}

.catch-actions,
.boost-actions {
  margin-top: 24px;
}

.catch-shot,
.boost-shot {
  padding: 24px 22px;
  border: 1px solid rgba(188, 201, 220, 0.42);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 43, 87, 0.07);
}

.catch-shot-primary,
.boost-shot-primary {
  padding: 24px;
}

.catch-shot-primary {
  max-width: min(100%, 560px);
  margin: 0 auto;
}

.catch-image,
.boost-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(188, 201, 220, 0.46);
  box-shadow: 0 10px 22px rgba(17, 43, 87, 0.12);
  background: #ffffff;
}

.catch-caption-wrap,
.boost-caption-wrap {
  margin-top: 16px;
}

.catch-caption-title,
.boost-caption-title {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.catch-caption-text,
.boost-caption-text {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.catch-text-cards,
.boost-text-cards {
  margin-top: 2px;
}

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

.catch-cta,
.boost-cta {
  padding: 34px 24px;
  border: 1px solid rgba(24, 168, 226, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(240, 248, 255, 0.96));
  text-align: center;
}

.catch-cta p,
.boost-cta p {
  margin: 0 0 16px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .boost-reports-grid {
    grid-template-columns: 1fr;
  }
}

/* Catch + Boost Responsive */

@media (max-width: 760px) {
  .catch-main,
  .boost-main,
  .mobile-app-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .catch-hero,
  .catch-cta,
  .boost-hero,
  .boost-cta,
  .mobile-app-hero,
  .mobile-app-cta {
    text-align: left;
  }

  .catch-actions,
  .boost-actions,
  .mobile-app-actions {
    justify-content: flex-start;
  }

  .catch-shot,
  .catch-shot-primary,
  .boost-shot,
  .boost-shot-primary,
  .mobile-app-shot,
  .mobile-app-shot-primary {
    padding: 18px;
    border-radius: 20px;
  }

  .catch-shot-primary {
    max-width: 100%;
  }

  .catch-image,
  .boost-image {
    border-radius: 12px;
  }

  .mobile-device-frame {
    width: min(100%, 340px);
    border-radius: 30px;
    padding: 14px 12px;
  }

  .mobile-app-image {
    border-radius: 18px;
  }

  .catch-cta,
  .boost-cta,
  .mobile-app-cta {
    padding: 26px 18px;
  }
}
