﻿:root {
  --navy: #071832;
  --navy-2: #0b2545;
  --blue: #2174b9;
  --teal: #00a6b3;
  --green: #22916c;
  --purple: #5b4e8e;
  --orange: #f18432;
  --paper: #f6f8fb;
  --card: #ffffff;
  --ink: #132238;
  --muted: #5d6b80;
  --line: rgba(19, 34, 56, 0.12);
  --shadow: 0 24px 80px rgba(7, 24, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 166, 179, 0.15), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 46rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(7, 24, 50, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.brand__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
  color: #24364f;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--navy-2);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(54px, 8vw, 105px) clamp(18px, 4vw, 64px);
}

.hero__copy {
  max-width: 740px;
}

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

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3.2rem, 6.8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 650px;
  color: #40506a;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions,
.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 35px rgba(0, 166, 179, 0.27);
}

.button--secondary,
.button--ghost {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.software-card {
  overflow: hidden;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(33, 116, 185, 0.18);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.software-card img {
  width: 100%;
  border-radius: 22px;
}

.floating-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 178px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(7, 24, 50, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(7, 24, 50, 0.22);
  backdrop-filter: blur(12px);
}

.floating-stat strong {
  font-size: 1rem;
}

.floating-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.floating-stat--one {
  left: -22px;
  bottom: 42px;
}

.floating-stat--two {
  right: 16px;
  top: 26px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(7, 24, 50, 0.08);
}

.trust-bar div {
  padding: 28px;
  background: #ffffff;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.08rem;
}

.trust-bar span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.section-copy {
  color: #40506a;
  font-size: 1.06rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-section {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  min-height: 248px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f9fbfe);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(7, 24, 50, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #ffffff;
  background: var(--navy-2);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.feature-card p,
.gallery-card p,
.workflow-list,
.faq-grid p {
  color: var(--muted);
}

.preview-section {
  background:
    radial-gradient(circle at top right, rgba(33, 116, 185, 0.14), transparent 28rem),
    var(--paper);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 48px rgba(7, 24, 50, 0.08);
}

.gallery-card--large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  background: #eaf0f7;
}

.gallery-card--large img {
  height: 460px;
}

.gallery-card div {
  padding: 24px;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1250px;
  margin: 0 auto;
}

.workflow-list {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
}

.workflow-list strong {
  color: var(--navy);
}

.workflow-image {
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.workflow-image img {
  border-radius: 18px;
}

.quote-section {
  padding-top: 0;
}

.quote-section blockquote {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.96), rgba(11, 37, 69, 0.92)),
    radial-gradient(circle at top right, rgba(0, 166, 179, 0.5), transparent 28rem);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.quote-section p {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.buy-section {
  padding-top: 0;
}

.buy-card {
  max-width: 1030px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 68px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 24, 50, 0.98), rgba(33, 116, 185, 0.9)),
    radial-gradient(circle at 90% 20%, rgba(0, 166, 179, 0.55), transparent 24rem);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.buy-card h2,
.buy-card .eyebrow {
  color: #ffffff;
}

.buy-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

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

details p {
  margin: 14px 0 0;
}

.safety-note {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 18px 22px;
  color: #473516;
  background: #fff4d8;
  border: 1px solid #f2d695;
  border-radius: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong,
.site-footer a {
  color: #ffffff;
}

.site-footer a {
  font-weight: 900;
}

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

  .hero {
    min-height: 0;
  }

  .feature-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card--large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .gallery-card--large img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    position: relative;
    z-index: 61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .nav-toggle span:not(.sr-only),
  .nav-toggle span:not(.sr-only)::before,
  .nav-toggle span:not(.sr-only)::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    content: "";
    transition: transform 160ms ease;
  }

  .nav-toggle span:not(.sr-only)::before {
    transform: translateY(-6px);
  }

  .nav-toggle span:not(.sr-only)::after {
    transform: translateY(4px);
  }

  .site-header.is-open .nav-toggle span:not(.sr-only) {
    background: transparent;
  }

  .site-header.is-open .nav-toggle span:not(.sr-only)::before {
    transform: translateY(1px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:not(.sr-only)::after {
    transform: translateY(-1px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 80px 22px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.96);
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .hero {
    padding-top: 46px;
  }

  .floating-stat {
    position: static;
    margin-top: 12px;
  }

  .software-card {
    transform: none;
  }

  .trust-bar,
  .feature-grid,
  .gallery,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--large {
    grid-column: auto;
  }

  .gallery-card img,
  .gallery-card--large img {
    height: auto;
  }

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

[data-large] {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(7, 24, 50, 0.88);
  backdrop-filter: blur(12px);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox__dialog {
  position: relative;
  width: min(1240px, 100%);
  max-height: 92svh;
  padding: clamp(10px, 1.8vw, 18px);
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.image-lightbox__dialog img {
  width: 100%;
  max-height: 80svh;
  object-fit: contain;
  border-radius: 18px;
  background: #eef3f8;
}

.image-lightbox__caption {
  margin: 10px 54px 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.image-lightbox__close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  color: #ffffff;
  background: var(--navy);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(7, 24, 50, 0.24);
}

.gallery-card img:hover,
.software-card img:hover,
.workflow-image img:hover {
  filter: saturate(1.04) contrast(1.03);
}
@media (max-width: 760px) {
  .image-lightbox {
    padding: 10px;
  }

  .image-lightbox__dialog {
    border-radius: 18px;
  }

  .image-lightbox__dialog img {
    border-radius: 12px;
  }

  .image-lightbox__caption {
    margin-right: 4px;
    font-size: 0.86rem;
  }

  .image-lightbox__close {
    right: 10px;
    top: 10px;
  }
}
.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 62svh;
  padding: clamp(54px, 8vw, 105px) clamp(18px, 4vw, 64px);
}

.subpage-hero h1 {
  max-width: 980px;
}

.support-summary-card,
.notice-card,
.request-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 48px rgba(7, 24, 50, 0.08);
}

.support-summary-card {
  padding: 28px;
}

.support-summary-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 18px;
  height: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.support-section {
  background: #ffffff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.request-section {
  background:
    radial-gradient(circle at top right, rgba(33, 116, 185, 0.14), transparent 28rem),
    var(--paper);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.notice-card {
  margin-top: 24px;
  padding: 20px 22px;
  color: #473516;
  background: #fff4d8;
  border-color: #f2d695;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

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

.request-form label,
.request-form fieldset {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(19, 34, 56, 0.22);
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
}

.request-form textarea {
  resize: vertical;
}

.request-form fieldset {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.request-form legend {
  padding: 0 8px;
}

.request-form fieldset label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 750;
}

.request-form input[type="checkbox"] {
  width: auto;
  min-height: auto;
  margin-top: 0.35em;
}

.processor-notes {
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

@media (max-width: 1040px) {
  .subpage-hero,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .support-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.addon-path-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 24px;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border: 1px solid rgba(33, 116, 185, 0.18);
  border-radius: 26px;
  box-shadow: 0 16px 48px rgba(7, 24, 50, 0.08);
}

.addon-path-card p {
  color: var(--muted);
}

.mini-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.mini-steps li::marker {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .addon-path-card {
    grid-template-columns: 1fr;
  }
}