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

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 130, 206, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 12%, rgba(80, 70, 229, 0.16), transparent 30rem),
    linear-gradient(180deg, #080d18 0%, var(--bg-body) 42%, #090d14 100%);
  min-height: 100vh;
}

a {
  color: var(--accent);
}

.suite-main {
  overflow: hidden;
}

.section {
  padding: 96px 0;
}

.section-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  color: var(--text-primary);
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.7;
  max-width: none;
}

.gradient-text {
  background: linear-gradient(95deg, #ffffff 10%, var(--accent) 52%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-title-svg {
  display: block;
  overflow: visible;
  pointer-events: none;
  position: absolute;
}

.gradient-title-enhanced {
  position: relative;
}

.gradient-title-enhanced .gradient-text {
  opacity: 0;
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 48px 0 72px;
  position: relative;
}

.hero-grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  background: rgba(49, 130, 206, 0.12);
  border: 1px solid rgba(211, 232, 238, 0.18);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 88px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin-bottom: 26px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 760px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), #5cb6ff);
  color: #fff;
  box-shadow: 0 18px 45px rgba(49, 130, 206, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(211, 232, 238, 0.2);
  color: var(--text-primary);
}

.button-secondary:hover {
  border-color: rgba(211, 232, 238, 0.45);
}

.app-store-cta-link {
  align-items: center;
  display: inline-flex;
  height: 56px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.app-store-cta-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.app-store-cta-image {
  display: block;
  height: 56px;
  width: auto;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(26, 31, 46, 0.92), rgba(9, 13, 20, 0.9));
  border: 1px solid rgba(211, 232, 238, 0.14);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  padding: 22px;
}

.suite-stack {
  display: grid;
  gap: 14px;
}

.suite-strip {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 20, 33, 0.95), rgba(23, 52, 84, 0.68)),
    var(--strip-bg, none) center / cover no-repeat;
  border: 1px solid rgba(211, 232, 238, 0.14);
  border-radius: 20px;
  color: var(--text-primary);
  display: grid;
  gap: 18px;
  grid-template-columns: 66px minmax(0, 1fr);
  min-height: 96px;
  overflow: hidden;
  padding: 16px 18px;
  position: relative;
  text-decoration: none;
}

.suite-strip:hover,
.suite-strip:focus-within {
  background:
    linear-gradient(90deg, rgba(13, 20, 33, 0.9), rgba(23, 52, 84, 0.55)),
    var(--strip-bg-hover, var(--strip-bg, none)) center / cover no-repeat;
}

.suite-strip::after {
  background: linear-gradient(90deg, transparent, rgba(92, 182, 255, 0.08));
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.2s ease;
}

.suite-strip:hover::after {
  opacity: 1;
}

.suite-strip img,
.product-icon img {
  display: block;
  filter: drop-shadow(0 14px 24px rgba(49, 130, 206, 0.32));
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.suite-strip-copy {
  display: block;
}

.suite-strip-title {
  color: var(--text-secondary);
  display: block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin-top: 7px;
}

.suite-strip-subtitle {
  color: var(--text-primary);
  display: block;
  font-size: clamp(27px, 4vw, 45px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.products-section {
  background: linear-gradient(180deg, rgba(26, 31, 46, 0.36), rgba(26, 31, 46, 0));
}

.section-header {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 36px;
}

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

.product-card {
  background: rgba(26, 31, 46, 0.72);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 24px;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  border-color: rgba(211, 232, 238, 0.28);
  transform: translateY(-3px);
}

.product-card.featured {
  background:
    linear-gradient(180deg, rgba(49, 130, 206, 0.18), rgba(26, 31, 46, 0.74));
  border-color: rgba(211, 232, 238, 0.24);
}

.product-icon {
  align-items: center;
  background: rgba(49, 130, 206, 0.1);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 18px;
  display: flex;
  height: 76px;
  justify-content: center;
  margin-bottom: 22px;
  width: 76px;
}

.product-card h3 {
  color: var(--text-primary);
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.product-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product-card p:not(.product-label) {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.product-card ul,
.feature-list {
  color: var(--text-secondary);
  line-height: 1.7;
  list-style: none;
  margin-bottom: 24px;
}

.product-card li,
.feature-list li {
  border-top: 1px solid rgba(211, 232, 238, 0.08);
  padding: 10px 0;
}

.card-link {
  color: var(--accent);
  font-weight: 700;
  margin-top: auto;
  text-decoration: none;
}

.security-stub-layout {
  display: grid;
  gap: 36px;
}

.security-stub-header {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.security-stub-copy {
  max-width: none;
}

.security-stub-header .cta-row {
  align-items: stretch;
  flex-direction: column;
}

#security-trust-center-link {
  border-radius: 14px;
  font-size: 18px;
  min-height: 72px;
  min-width: 260px;
  padding: 20px 28px;
}

.security-badges-section {
  padding-top: 32px;
}

.security-badge-row {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
}

.security-badge-image {
  display: block;
  height: auto;
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
}

.security-hero {
  padding-bottom: 42px;
}

.security-hero .hero-subtitle {
  margin-bottom: 30px;
}

.security-hero-list {
  color: var(--text-secondary);
  line-height: 1.65;
  list-style: none;
}

.security-hero-list li {
  border-top: 1px solid rgba(211, 232, 238, 0.08);
  padding: 11px 0;
}

.security-hero-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.security-controls-section {
  padding-top: 64px;
}

.security-control-stack {
  display: grid;
  gap: 54px;
}

.security-controls-header {
  max-width: 760px;
}

.security-controls-title,
.security-control-group-title {
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.security-controls-title {
  font-size: clamp(32px, 4vw, 48px);
}

.security-control-group {
  display: grid;
  gap: 18px;
}

.security-control-group-title {
  font-size: clamp(25px, 3vw, 34px);
}

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

.security-control-card {
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 18px;
  min-height: 150px;
  padding: 22px;
}

.security-control-card h4 {
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 9px;
}

.security-control-card p {
  color: var(--text-secondary);
  line-height: 1.62;
}

.security-documentation-panel {
  align-items: center;
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 22px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 28px;
}

.security-documentation-panel h3 {
  color: var(--text-primary);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.security-documentation-panel p:not(.section-kicker) {
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 780px;
}

.security-faq-section {
  background: transparent;
  padding: 0;
}

.security-faq-section::before,
.security-faq-section::after {
  display: none;
}

.security-faq-inner {
  position: relative;
  z-index: 1;
}

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

.security-stub-point {
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 22px;
  min-height: 182px;
  padding: 24px;
}

.security-stub-point h3 {
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.security-stub-point p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-demo-row {
  display: flex;
  margin-top: 30px;
}

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

.value-card {
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 22px;
  padding: 24px;
}

.value-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-secondary);
}

.value-testimonials {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  isolation: isolate;
  margin-top: 28px;
  padding: 34px 0;
  position: relative;
  width: 100%;
}

.value-testimonials::before {
  background: rgba(0, 0, 0, 0.32);
  content: "";
  inset: 0 calc(50% - 50vw);
  position: absolute;
  z-index: -1;
}

.value-testimonial {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 92px minmax(0, 1fr);
  padding: 0;
}

.value-testimonial-headshot {
  aspect-ratio: 1;
  border: 1px solid rgba(211, 232, 238, 0.22);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  display: block;
  object-fit: cover;
  width: 100%;
}

.value-testimonial blockquote {
  color: var(--text-secondary);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.value-testimonial figcaption {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 20px;
}

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

.team-card {
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 22px;
  padding: 24px;
}

.team-portrait-panel {
  align-items: center;
  background: rgba(39, 48, 70, 0.82);
  border-radius: 999px;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 18px;
  padding: 12px 18px 12px 12px;
  width: 100%;
}

.team-identity {
  flex: 1;
  min-width: 0;
}

.team-avatar {
  border: 1px solid rgba(211, 232, 238, 0.16);
  border-radius: 50%;
  flex: 0 0 112px;
  height: 112px;
  overflow: hidden;
  width: 112px;
}

.team-avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-profile-link,
.team-profile-link:hover,
.team-profile-link:focus,
.team-profile-link:visited {
  color: inherit;
  text-decoration: none;
}

.team-portrait-link {
  display: block;
  height: 100%;
  width: 100%;
}

.team-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.team-portrait-panel .role {
  margin-bottom: 0;
}

.team-card p {
  color: var(--text-secondary);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  max-width: 980px;
}

.faq-hero-section {
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  position: relative;
}

.faq-hero-section::before {
  background-image: var(--faq-bg, url("horse.png"));
  background-position: center top;
  background-repeat: no-repeat;
  background-size: max(100vw, 1120px) auto;
  content: "";
  inset: 0;
  opacity: var(--faq-bg-opacity, 0.16);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.faq-hero-section::after {
  background:
    radial-gradient(circle at 18% 22%, rgba(49, 130, 206, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(8, 13, 24, 0.92), rgba(8, 13, 24, 0.72) 54%, rgba(8, 13, 24, 0.9));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.faq-hero-section .container {
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}

.faq-question::after {
  color: var(--accent);
  content: "+";
  font-size: 24px;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer-inner {
  padding: 0 22px 22px;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(49, 130, 206, 0.2), rgba(80, 70, 229, 0.12)),
    rgba(26, 31, 46, 0.72);
  border: 1px solid rgba(211, 232, 238, 0.16);
  border-radius: 30px;
  padding: 42px;
}

#prism-pricing-cta-row {
  margin-top: 36px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 620px;
}

.contact-form-card {
  background: rgba(8, 13, 24, 0.78);
  border: 1px solid rgba(211, 232, 238, 0.14);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.18);
  margin-top: 30px;
  max-width: calc(980px - 42px);
  padding: 28px;
  width: 100%;
}

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

#suite-contact-form {
  max-width: none;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.form-input,
.form-textarea {
  background: rgba(8, 13, 24, 0.72);
  border: 1px solid rgba(211, 232, 238, 0.16);
  border-radius: 14px;
  color: var(--text-primary);
  font: inherit;
  padding: 14px 16px;
  width: 100%;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-message {
  border-radius: 12px;
  padding: 12px 14px;
}

.success-message {
  background: rgba(72, 187, 120, 0.14);
  border: 1px solid rgba(72, 187, 120, 0.4);
  color: var(--success);
}

.site-footer {
  border-top: 1px solid rgba(211, 232, 238, 0.1);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.footer-heading {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

.copyright {
  border-top: 1px solid rgba(211, 232, 238, 0.08);
  color: var(--text-tertiary);
  margin-top: 30px;
  padding-top: 24px;
}

.product-hero {
  padding: 48px 0 70px;
}

.product-hero-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.product-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin-bottom: 24px;
}

.product-visual {
  align-items: center;
  background: radial-gradient(circle, rgba(49, 130, 206, 0.22), rgba(26, 31, 46, 0.64) 56%, rgba(8, 13, 24, 0.86));
  border: 1px solid rgba(211, 232, 238, 0.14);
  border-radius: 32px;
  display: flex;
  justify-content: center;
  min-height: 360px;
  padding: 34px;
}

.product-visual img {
  filter: drop-shadow(0 24px 44px rgba(49, 130, 206, 0.35));
  max-height: 250px;
  max-width: 100%;
  object-fit: contain;
}

.screenshot-carousel-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(72, 187, 120, 0.11), transparent 28rem),
    linear-gradient(180deg, rgba(26, 31, 46, 0.18), rgba(8, 13, 24, 0));
  overflow: hidden;
}

.product-screenshot-carousel-section {
  padding-top: 34px;
}

.screenshot-carousel-header {
  margin-bottom: 34px;
  max-width: none;
}

.screenshot-carousel {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.screenshot-carousel-stage {
  height: clamp(320px, 49vw, 620px);
  max-width: 1080px;
  perspective: 2600px;
  position: relative;
  width: min(100%, 980px);
}

.screenshot-carousel-stage-phone {
  height: clamp(520px, 72vw, 720px);
  max-width: 420px;
  width: min(100%, 390px);
}

.screenshot-carousel-track {
  height: 100%;
  inset: 0;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.22, 1);
  width: 100%;
}

.screenshot-carousel-item {
  align-items: stretch;
  backface-visibility: hidden;
  background:
    linear-gradient(180deg, rgba(211, 232, 238, 0.08), rgba(211, 232, 238, 0.02)),
    rgba(8, 13, 24, 0.94);
  border: 1px solid rgba(211, 232, 238, 0.16);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  left: 50%;
  opacity: 0.42;
  overflow: hidden;
  padding: 12px;
  position: absolute;
  top: 0;
  transition: opacity 0.24s ease, filter 0.24s ease;
  width: min(100%, 860px);
}

.screenshot-carousel-item.is-active {
  filter: none;
  opacity: 1;
}

.screenshot-carousel-item img {
  background: #050812;
  border-radius: 12px;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.screenshot-carousel-item-phone img {
  object-fit: contain;
}

.screenshot-carousel-item figcaption {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 4px 2px;
  text-align: center;
  text-transform: uppercase;
}

.screenshot-carousel-controls {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.screenshot-carousel-controls[hidden] {
  display: none;
}

.screenshot-carousel-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(211, 232, 238, 0.2);
  border-radius: 999px;
  color: var(--text-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  min-width: 92px;
  padding: 10px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.screenshot-carousel-button:hover {
  border-color: rgba(211, 232, 238, 0.45);
  transform: translateY(-2px);
}

.screenshot-carousel-status {
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 800;
  min-width: 64px;
  text-align: center;
}

.split-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.feature-panel {
  background: rgba(26, 31, 46, 0.62);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 26px;
  padding: 30px;
}

.comparison-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card {
  background: rgba(26, 31, 46, 0.68);
  border: 1px solid rgba(211, 232, 238, 0.14);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
}

.comparison-card-featured {
  background:
    linear-gradient(180deg, rgba(49, 130, 206, 0.16), rgba(26, 31, 46, 0.72));
  border-color: rgba(211, 232, 238, 0.24);
}

.comparison-card h3 {
  color: var(--text-primary);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.comparison-card p:not(.section-kicker) {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.comparison-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.product-workflow-section {
  position: relative;
}

.workflow-tabs {
  margin-top: 38px;
}

.workflow-tab-list {
  background: rgba(8, 13, 24, 0.74);
  border: 1px solid rgba(211, 232, 238, 0.14);
  border-radius: 16px;
  display: inline-grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  padding: 6px;
}

.workflow-tab {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 18px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.workflow-tab:hover,
.workflow-tab:focus-visible {
  color: var(--text-primary);
}

.workflow-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.workflow-tab.is-active {
  background: rgba(49, 130, 206, 0.22);
  border-color: rgba(211, 232, 238, 0.22);
  color: var(--text-primary);
}

.workflow-tab-panels {
  margin-top: 34px;
}

.workflow-tab-panel[hidden] {
  display: none;
}

.workflow-showcase {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 44px;
}

.workflow-carousel {
  display: grid;
  justify-items: center;
  position: sticky;
  top: 178px;
}

.workflow-carousel .screenshot-carousel {
  align-items: center;
  column-gap: 16px;
  grid-template-areas:
    "prev stage next"
    ". status .";
  grid-template-columns: auto minmax(240px, 1fr) auto;
  justify-content: center;
  row-gap: 14px;
  width: 100%;
}

.workflow-carousel .screenshot-carousel-stage {
  grid-area: stage;
  justify-self: center;
  width: min(100%, 390px);
}

.workflow-carousel .screenshot-carousel-controls {
  display: contents;
}

#mobile-workflow-screenshots-prev-button {
  grid-area: prev;
}

#mobile-workflow-screenshots-next-button {
  grid-area: next;
}

#mobile-workflow-screenshots-status {
  grid-area: status;
  justify-self: center;
}

.workflow-carousel .screenshot-carousel-button {
  min-width: 76px;
  padding-left: 14px;
  padding-right: 14px;
}

.workflow-steps {
  display: grid;
  gap: 14px;
  list-style: none;
}

.workflow-step {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(211, 232, 238, 0.07), rgba(211, 232, 238, 0.02)),
    rgba(26, 31, 46, 0.64);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 22px;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.workflow-step:hover {
  border-color: rgba(211, 232, 238, 0.28);
  transform: translateY(-2px);
}

.workflow-step-index {
  align-items: center;
  background: rgba(49, 130, 206, 0.16);
  border: 1px solid rgba(211, 232, 238, 0.18);
  border-radius: 18px;
  color: var(--accent);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.workflow-step h3 {
  color: var(--text-primary);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.15;
  margin-bottom: 8px;
}

.workflow-step p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
}

.workflow-console {
  background:
    radial-gradient(circle at 18% 12%, rgba(72, 187, 120, 0.18), transparent 17rem),
    radial-gradient(circle at 90% 0%, rgba(236, 201, 75, 0.12), transparent 18rem),
    linear-gradient(150deg, rgba(26, 31, 46, 0.94), rgba(8, 13, 24, 0.96));
  border: 1px solid rgba(211, 232, 238, 0.16);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  order: -1;
  overflow: hidden;
  position: relative;
  top: auto;
}

.workflow-console::before {
  background: linear-gradient(90deg, var(--primary), var(--success), var(--warning));
  content: "";
  display: block;
  height: 4px;
  opacity: 0.9;
}

.workflow-console-header {
  padding: 28px 28px 18px;
}

.workflow-console-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.workflow-console-title {
  color: var(--text-primary);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.workflow-console-status {
  background: rgba(72, 187, 120, 0.16);
  border: 1px solid rgba(72, 187, 120, 0.34);
  border-radius: 999px;
  color: #c9f7d9;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.workflow-console-body {
  padding: 0 28px 28px;
}

.workflow-console-row {
  border-top: 1px solid rgba(211, 232, 238, 0.1);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  padding: 18px 0;
}

.workflow-console-label,
.workflow-metric-label {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-console-value {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.45;
}

.workflow-console-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.workflow-console-feature {
  background: rgba(211, 232, 238, 0.08);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 11px;
}

.workflow-metric-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.workflow-metric {
  border-bottom: 1px solid rgba(211, 232, 238, 0.12);
  padding: 12px 0 14px;
}

.workflow-metric-value {
  color: var(--text-primary);
  display: block;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 5px;
}

body.landing-page {
  padding-top: 0;
}

.landing-header {
  background: rgba(8, 13, 24, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(211, 232, 238, 0.08);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

.landing-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  padding-top: 16px;
}

.landing-logo {
  align-items: center;
  color: var(--text-primary);
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.landing-logo img {
  filter: drop-shadow(0 12px 22px rgba(49, 130, 206, 0.28));
  height: 38px;
  width: 38px;
}

.landing-logo span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.landing-logo small {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-hero {
  padding: 82px 0 70px;
  position: relative;
}

.landing-hero::before {
  background:
    radial-gradient(circle at 75% 22%, rgba(92, 182, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 20% 10%, rgba(80, 70, 229, 0.16), transparent 28rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.landing-hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  position: relative;
  z-index: 1;
}

.landing-copy h1 {
  font-size: clamp(46px, 7vw, 88px);
  letter-spacing: -0.065em;
  line-height: 0.96;
  margin-bottom: 26px;
}

.button-large {
  min-height: 58px;
  padding: 16px 26px;
}

.button-full {
  width: 100%;
}

.landing-assurance {
  color: var(--text-tertiary);
  font-size: 15px;
  margin-top: 18px;
  max-width: 680px;
}

.conversion-panel {
  background:
    linear-gradient(180deg, rgba(26, 31, 46, 0.92), rgba(8, 13, 24, 0.9)),
    rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(211, 232, 238, 0.16);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  padding: 30px;
}

.panel-product-mark {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 66px minmax(0, 1fr);
  margin-bottom: 24px;
}

.panel-product-mark img {
  background: rgba(49, 130, 206, 0.1);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 18px;
  filter: drop-shadow(0 14px 24px rgba(49, 130, 206, 0.28));
  height: 66px;
  object-fit: contain;
  padding: 10px;
  width: 66px;
}

.panel-product-mark strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.panel-product-mark span,
.demo-form-panel p {
  color: var(--text-secondary);
}

.check-list {
  color: var(--text-secondary);
  display: grid;
  gap: 14px;
  list-style: none;
  margin-bottom: 26px;
}

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

.check-list li::before {
  align-items: center;
  background: rgba(72, 187, 120, 0.14);
  border: 1px solid rgba(72, 187, 120, 0.34);
  border-radius: 50%;
  color: var(--success);
  content: "✓";
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 2px;
  width: 20px;
}

.landing-tight-section {
  padding: 66px 0;
}

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

.proof-card,
.landing-product-card {
  background: rgba(26, 31, 46, 0.66);
  border: 1px solid rgba(211, 232, 238, 0.12);
  border-radius: 24px;
  padding: 26px;
}

.proof-card span {
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.proof-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 12px;
}

.proof-card p,
.landing-product-card p {
  color: var(--text-secondary);
}

.landing-final-cta {
  padding-top: 66px;
}

.landing-cta-band {
  text-align: left;
}

.app-store-badge-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
}

.app-store-badge-link img {
  display: block;
  height: 52px;
  width: auto;
}

.landing-spaced-cta {
  margin-top: 28px;
}

.demo-form-panel h2 {
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 12px;
}

.landing-contact-form {
  margin-top: 22px;
  max-width: none;
}

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

.landing-product-card {
  min-height: 100%;
}

.landing-product-card.featured {
  background:
    linear-gradient(180deg, rgba(49, 130, 206, 0.18), rgba(26, 31, 46, 0.72));
  border-color: rgba(211, 232, 238, 0.24);
}

.landing-product-card img {
  filter: drop-shadow(0 14px 24px rgba(49, 130, 206, 0.28));
  height: 54px;
  margin-bottom: 20px;
  object-fit: contain;
  width: 54px;
}

.landing-product-card h3 {
  font-size: 26px;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 10px;
}

.landing-footer {
  border-top: 1px solid rgba(211, 232, 238, 0.1);
  padding: 26px 0;
}

.landing-footer-inner {
  align-items: center;
  color: var(--text-tertiary);
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.landing-footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-card-grid,
  .value-grid,
  .security-stub-grid,
  .security-control-grid,
  .landing-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-showcase {
    grid-template-columns: 1fr;
  }

  .workflow-carousel,
  .workflow-console {
    position: relative;
    top: auto;
  }
}

@media (max-width: 1100px) {
  .hero .cta-row {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero .button {
    flex: 0 1 auto;
    font-size: 14px;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 32px 0 64px;
  }

  .product-hero {
    padding: 32px 0 64px;
  }

  .hero-grid,
  .product-hero-grid,
  .split-grid,
  .security-stub-layout,
  .security-stub-header,
  .security-documentation-panel,
  .landing-hero-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .product-visual {
    min-height: 260px;
  }

  .product-screenshot-carousel-section {
    padding-top: 24px;
  }

  .screenshot-carousel-stage {
    height: clamp(260px, 58vw, 440px);
    width: min(100%, 760px);
  }

  .screenshot-carousel-stage-phone {
    height: clamp(480px, 118vw, 680px);
    width: min(100%, 360px);
  }

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

  .workflow-console-row {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding: 58px 0 52px;
  }

  .landing-header-cta {
    display: none;
  }

  .landing-logo small {
    display: none;
  }
}

@media (max-width: 768px) {
  body.home-page {
    padding-top: 0;
  }

  .screenshot-carousel-stage {
    height: clamp(208px, 46vw, 352px);
    width: min(80%, 608px);
  }

  .screenshot-carousel-stage-phone {
    height: clamp(384px, 94vw, 544px);
    width: min(80%, 288px);
  }
}

@media (max-width: 620px) {
  .product-grid,
  .comparison-card-grid,
  .value-grid,
  .security-stub-grid,
  .security-control-grid,
  .security-badge-row,
  .value-testimonials,
  .form-row,
  .landing-product-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .workflow-console-header,
  .workflow-console-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .workflow-metric-grid {
    grid-template-columns: 1fr;
  }

  .suite-strip {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .screenshot-carousel-stage {
    height: clamp(176px, 53vw, 272px);
    width: min(80%, calc(100vw - 36px));
  }

  .screenshot-carousel-stage-phone {
    height: clamp(352px, 106vw, 496px);
    width: min(80%, 256px);
  }

  .screenshot-carousel-item {
    border-radius: 14px;
    padding: 8px;
  }

  .screenshot-carousel-item figcaption {
    font-size: 12px;
    padding-top: 10px;
  }

  .screenshot-carousel-controls {
    gap: 10px;
    width: 100%;
  }

  .screenshot-carousel-button {
    min-width: 0;
    width: 96px;
  }

  .workflow-carousel .screenshot-carousel {
    column-gap: 8px;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .workflow-carousel .screenshot-carousel-stage-phone {
    width: min(52vw, 220px);
  }

  .workflow-carousel .screenshot-carousel-button {
    font-size: 12px;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    width: 52px;
  }

  .suite-strip img,
  .product-icon img {
    height: 46px;
    width: 46px;
  }

  .value-testimonial {
    gap: 14px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cta-band {
    padding: 28px;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .cta-row .button {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 11px 16px;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .app-store-cta-link {
    height: 49.6px;
    justify-content: center;
    width: 100%;
  }

  .app-store-cta-image {
    height: 49.6px;
  }

  .app-store-badge-link {
    justify-content: center;
  }

  .app-store-badge-link img {
    height: 46px;
  }

  .landing-copy h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .conversion-panel {
    padding: 24px;
  }

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

@media (max-width: 360px) {
  .hero .cta-row {
    gap: 8px;
  }

  .hero .button {
    line-height: 1.15;
  }
}
