:root {
  --navy-950: #061426;
  --navy-900: #0b213d;
  --navy-800: #133456;
  --ink: #10243e;
  --muted: #5f6f80;
  --gold: #c69a48;
  --gold-light: #edc977;
  --green: #0eaa4d;
  --green-dark: #087b36;
  --surface: #ffffff;
  --surface-cool: #eef3f7;
  --line: #d6dee7;
  --shadow: 0 16px 40px rgba(6, 20, 38, .12);
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.has-fixed-cta {
  padding-bottom: 78px;
}

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

a {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(237, 201, 119, .45);
}

.header-inner {
  display: flex;
  width: min(100% - 24px, 1180px);
  min-height: 58px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-mobile-picture,
.hero-mobile-visual {
  display: none;
}

.fixed-cta-trigger {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-desktop-visual {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 15, 29, .38), rgba(4, 15, 29, .86));
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.hero-phone {
  position: absolute;
  z-index: -1;
  right: -145px;
  bottom: -105px;
  width: 350px;
  max-width: none;
  opacity: .38;
  filter: saturate(.92) brightness(.8);
}

.hero-inner {
  display: flex;
  width: min(100% - 20px, 1180px);
  min-height: 660px;
  margin-inline: auto;
  padding-block: 18px 28px;
  align-items: center;
}

.hero-copy {
  width: 100%;
  padding: 22px 18px 20px;
  border: 1px solid rgba(237, 201, 119, .38);
  border-radius: 8px;
  background: rgba(6, 20, 38, .91);
  box-shadow: 0 24px 56px rgba(2, 10, 20, .38);
  backdrop-filter: blur(9px);
  text-align: center;
}

.hero-category {
  display: inline-flex;
  min-height: 34px;
  margin: 0;
  padding: 5px 12px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  background: #fff;
  border-radius: 999px;
  font-size: clamp(12px, 3.4vw, 14px);
  font-weight: 900;
}

.hero-title {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(36px, 10.6vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 5px 24px rgba(0, 0, 0, .5);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title-accent {
  color: var(--gold-light);
  text-shadow: 0 5px 24px rgba(0, 0, 0, .48), 0 0 24px rgba(198, 154, 72, .2);
}

.hero-summary {
  position: relative;
  margin: 18px 0 0;
  padding-top: 17px;
  font-size: clamp(13px, 3.7vw, 15px);
  font-weight: 700;
  line-height: 1.8;
}

.hero-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 4px;
  background: var(--gold);
  transform: translateX(-50%);
}

.hero-summary br {
  display: none;
}

.hero-data-note {
  margin: 8px 0 0;
  color: #d7e1eb;
  font-size: 12px;
  font-weight: 600;
}

.cta-block {
  text-align: center;
}

.cta-block > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-cta-block {
  margin-top: 18px;
}

.hero-cta-block > p,
.dark-cta > p,
.final-cta .cta-block > p {
  color: #dbe4ed;
}

.cta-button {
  width: min(100%, 520px);
  margin-inline: auto;
}

.line-cta {
  display: grid;
  min-width: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #14b955 0%, var(--green) 100%);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 0 var(--green-dark), 0 10px 24px rgba(3, 52, 24, .2);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.line-cta--large {
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  min-height: 68px;
  padding: 10px 18px;
  column-gap: 12px;
  font-size: clamp(18px, 2vw, 21px);
}

.line-cta__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.line-cta__label {
  min-width: 0;
  white-space: nowrap;
}

.line-cta__arrow {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  justify-self: center;
}

.line-cta__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.line-cta:hover,
.line-cta:focus-visible {
  filter: brightness(1.03);
  box-shadow: 0 5px 0 var(--green-dark), 0 13px 28px rgba(3, 52, 24, .25);
  transform: translateY(-2px);
}

.line-cta:active {
  box-shadow: 0 2px 0 var(--green-dark), 0 6px 16px rgba(3, 52, 24, .2);
  transform: translateY(1px) scale(.99);
}

.line-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .line-cta--large {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    padding-inline: 12px;
    column-gap: 8px;
    font-size: 18px;
  }

  .line-cta--large .line-cta__icon {
    width: 34px;
    height: 34px;
  }

  .line-cta--large .line-cta__arrow {
    width: 18px;
    height: 18px;
  }
}

.section {
  padding-block: 72px;
}

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

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-label {
  margin: 0 0 8px;
  color: #815e1c;
  font-size: 12px;
  font-weight: 900;
}

.section-heading-light .section-label,
.final-cta .section-label {
  color: #d5ad65;
}

.section-heading h2,
.company h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 7.5vw, 44px);
  font-weight: 900;
  line-height: 1.35;
}

.section-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.capabilities {
  background: var(--surface);
}

.capability-grid {
  display: grid;
  gap: 12px;
}

.capability-item {
  display: grid;
  min-height: 0;
  padding: 17px 15px;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 3px solid var(--gold);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 36, 62, .06);
}

.capability-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-light);
  background: var(--navy-900);
  border-radius: 50%;
}

.capability-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.capability-item h3,
.information-items h3,
.flow-list h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 19px;
  line-height: 1.45;
}

.capability-item p,
.information-items p,
.flow-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-item h3 {
  font-size: 16px;
}

.capability-item p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.65;
}

.section-cta {
  margin: 36px auto 0;
}

.cta-kicker {
  margin-bottom: 10px !important;
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.line-screen-section {
  color: #fff;
  background: var(--navy-900);
}

.line-screen-section .section-heading > p:last-child {
  color: #d5dee8;
}

.line-screen-lead {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900;
}

.line-screen-showcase {
  display: grid;
  gap: 16px;
  touch-action: pan-y;
}

.line-screen-main {
  width: min(100%, 430px);
  margin-inline: auto;
}

.line-screen-phone {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(237, 201, 119, .48);
  border-radius: 28px;
  background: #111820;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .32);
}

.line-screen-phone__bar {
  display: none;
}

.line-screen-phone__screen {
  overflow: hidden;
  border-radius: 19px;
  background: #191919;
}

.line-screen-phone__screen img {
  width: 100%;
  height: auto;
}

.line-screen-caption {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.line-screen-previews {
  display: grid;
  gap: 12px;
}

.line-screen-preview-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.line-screen-preview-card__image {
  overflow: hidden;
  background: #f4f4f4;
}

.line-screen-preview-card__image img {
  width: 100%;
  height: auto;
}

.line-screen-preview-card > div:last-child {
  position: relative;
  padding: 14px 14px 15px 48px;
}

.line-screen-preview-card span {
  position: absolute;
  top: 15px;
  left: 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
}

.line-screen-preview-card h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.line-screen-preview-card p {
  margin: 5px 0 0;
  color: #cbd6e0;
  font-size: 12px;
  line-height: 1.7;
}

.line-screen-viewer__open,
.line-screen-dialog__close {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.line-screen-viewer__open {
  display: flex;
  width: min(100%, 430px);
  min-height: 52px;
  margin: 22px auto 0;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: var(--gold-light);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
}

.line-screen-viewer__open:hover,
.line-screen-viewer__open:focus-visible {
  filter: brightness(1.06);
}

.line-screen-note,
.line-screen-noscript {
  max-width: 760px;
  margin: 14px auto 0;
  color: #b8c4cf;
  font-size: 11px;
  line-height: 1.8;
  text-align: center;
}

.line-screen-noscript a {
  color: var(--gold-light);
}

.line-screen-dialog {
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  color: var(--ink);
  background: #f3f6f9;
  border: 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.line-screen-dialog::backdrop {
  background: rgba(2, 9, 18, .78);
}

.line-screen-dialog__shell {
  min-height: 100%;
}

.line-screen-dialog__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  min-height: 62px;
  padding: 10px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(237, 201, 119, .5);
}

.line-screen-dialog__header h2 {
  margin: 0;
  font-size: 17px;
}

.line-screen-dialog__close {
  min-width: 64px;
  min-height: 40px;
  padding: 7px 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
}

.line-screen-dialog__body {
  width: min(100% - 24px, 786px);
  margin-inline: auto;
  padding-block: 16px 24px;
}

.line-screen-dialog__body > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.line-screen-dialog__body img {
  display: block;
  width: 94%;
  max-width: 740px;
  height: auto;
  margin-inline: auto;
  background: #191919;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.line-screen-dialog__footer {
  padding: 0 12px max(24px, env(safe-area-inset-bottom));
}

.line-screen-dialog__close-bottom {
  display: flex;
  width: min(100%, 430px);
  min-height: 52px;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--navy-900);
}

body.line-screen-dialog-open {
  overflow: hidden;
}

.line-cta-band {
  padding: 32px 14px 35px;
  color: #fff;
  background: var(--navy-950);
  border-top: 1px solid rgba(237, 201, 119, .4);
  border-bottom: 1px solid rgba(237, 201, 119, .4);
}

.line-cta-inner {
  width: min(100%, 700px);
  margin-inline: auto;
}

.line-cta-inner > p {
  color: #d6e0e9;
}

.line-cta-inner .cta-kicker {
  margin-top: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
}

.cases {
  background: var(--surface-cool);
}

.case-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.case-summary div {
  padding: 14px 10px;
  text-align: center;
}

.case-summary div + div {
  border-left: 1px solid var(--line);
}

.case-summary div:last-child {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.case-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.case-summary dd {
  margin: 4px 0 0;
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 900;
}

.case-grid {
  display: grid;
  gap: 16px;
}

.case-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.case-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-photo span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.case-content {
  padding: 18px;
  color: #fff;
}

.case-content h3 {
  margin: 12px 0;
  color: #fff;
  font-size: 21px;
}

.case-content dl {
  margin: 0;
}

.case-content dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  align-items: baseline;
}

.case-content dt {
  color: #afbac6;
  font-size: 13px;
  font-weight: 700;
}

.case-content dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.case-content .case-price {
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 900;
}

.case-grid-compact .case-photo {
  aspect-ratio: 4 / 3;
}

.case-grid-compact .case-photo span {
  top: 7px;
  left: 7px;
  padding: 3px 6px;
  font-size: 9px;
}

.case-grid-compact .case-content {
  padding: 10px;
}

.case-grid-compact .case-content h3 {
  min-height: 42px;
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.45;
}

.case-grid-compact .case-content dl div {
  display: block;
  padding: 6px 0;
}

.case-grid-compact .case-content dt {
  font-size: 10px;
}

.case-grid-compact .case-content dd {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.45;
}

.case-grid-compact .case-content .case-price {
  font-size: 16px;
}

.case-disclaimer,
.information-note,
.category-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.case-categories {
  margin-top: 28px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-categories header {
  text-align: center;
}

.case-categories h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.45;
}

.case-category-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-category-tags li {
  display: flex;
  min-height: 50px;
  padding: 9px 10px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  background: var(--surface-cool);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.case-categories .category-note {
  margin-top: 14px;
  text-align: center;
}

.dark-cta {
  padding: 24px 16px 20px;
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.dark-cta .cta-kicker {
  color: #fff !important;
}

.information {
  background: var(--navy-900);
  color: #fff;
}

.information .section-heading h2,
.information-copy > p {
  color: #fff;
}

.information-copy > p {
  margin: 14px 0 0;
}

.information-items {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.information-items article {
  padding: 20px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fff;
}

.information-items article > span {
  color: #815e1c;
  font-size: 12px;
  font-weight: 900;
}

.information-note {
  color: #c8d3de;
}

.section-heading-light h2 {
  color: #fff;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow {
  background: var(--surface-cool);
}

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

.flow-list li {
  display: grid;
  padding: 18px 16px;
  grid-template-columns: 64px 1fr;
  column-gap: 12px;
  align-items: start;
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 36, 62, .06);
}

.flow-list li > span {
  grid-row: 1 / 3;
  margin-top: 2px;
  color: #815e1c;
  font-size: 12px;
  font-weight: 900;
}

.flow-list h3,
.flow-list p {
  grid-column: 2;
}

.faq {
  background: #fff;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 0;
  padding: 0 36px 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding-block: 72px;
  color: #fff;
  background: var(--navy-800);
  border-top: 3px solid var(--gold);
  text-align: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta-title-mobile,
.final-cta-title-mobile > span {
  display: block;
}

.final-cta-title-mobile > span,
.final-cta-description-mobile {
  white-space: nowrap;
}

.final-cta-title-desktop,
.final-cta-description-desktop {
  display: none;
}

.final-cta-note-part {
  white-space: nowrap;
}

.final-cta-narrow-break {
  display: none;
}

.final-cta-inner > p:not(.section-label) {
  margin: 16px 0 0;
  color: #d7e1eb;
}

.final-cta .cta-block {
  margin-top: 26px;
}

@media (max-width: 359px) {
  .final-cta-narrow-break {
    display: block;
  }
}

.company {
  padding-block: 56px;
  background: var(--surface-cool);
}

.company h2 {
  font-size: 28px;
}

.company dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.company dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.company dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.company dd {
  margin: 4px 0 0;
  font-weight: 600;
}

.company dd a {
  text-underline-offset: 3px;
}

.site-footer {
  padding: 32px 0;
  color: #d7e1eb;
  background: var(--navy-950);
  text-align: center;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.footer-inner a {
  font-size: 13px;
  text-underline-offset: 4px;
}

.footer-inner > p {
  margin: 22px 0 0;
  color: #9faebe;
  font-size: 11px;
}

.mobile-fixed-cta {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 20, 38, .96);
  box-shadow: 0 -8px 24px rgba(6, 20, 38, .22);
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.mobile-fixed-cta.is-visible:not(.is-near-final) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-fixed-cta a {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
}

.line-cta--fixed {
  grid-template-columns: 24px auto 24px;
  padding: 7px 16px;
  column-gap: 10px;
}

.line-cta--fixed .line-cta__icon {
  width: 24px;
  height: 24px;
}

.line-cta--fixed .line-cta__arrow {
  width: 16px;
  height: 16px;
}

.line-cta--fixed .line-cta__arrow::before {
  width: 8px;
  height: 8px;
  border-width: 2px;
}

@media (max-width: 767px) {
  .site-header {
    display: none;
  }

  .line-screen-preview-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .line-screen-preview-card:first-child .line-screen-preview-card__image,
  .line-screen-preview-card__image-action {
    background: #191919;
  }

  .line-screen-preview-card:first-child .line-screen-preview-card__image img,
  .line-screen-preview-card__image-action img {
    width: 75%;
    margin-inline: auto;
  }

  .hero {
    min-height: 0;
  }

  .hero::before,
  .hero-background,
  .hero-phone {
    display: none;
  }

  .hero-mobile-visual {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-mobile-picture {
    display: block;
  }

  .hero-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .hero-copy {
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-category,
  .hero-title,
  .hero-summary,
  .hero-data-note,
  .hero-cta-block > p {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero-cta-block {
    position: absolute;
    z-index: 2;
    top: 82.3%;
    left: 6.4%;
    width: 87.2%;
    height: 11%;
    margin: 0;
    pointer-events: auto;
  }

  .hero.is-previous-mobile-visual .hero-cta-block {
    top: 68%;
    left: 7.4%;
    width: 85.2%;
    height: 9.4%;
  }

  .hero-cta-block .cta-button {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    color: transparent;
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  .hero-cta-block .line-cta__icon,
  .hero-cta-block .line-cta__label,
  .hero-cta-block .line-cta__arrow {
    visibility: hidden;
  }

  .hero-cta-block .cta-button:hover,
  .hero-cta-block .cta-button:focus-visible {
    background: rgba(255, 255, 255, .08);
    filter: none;
    transform: none;
  }

  .hero-cta-block .cta-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
  }
}

@media (min-width: 768px) {
  body.has-fixed-cta {
    padding-bottom: 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 20px;
  }

  .header-cta {
    display: inline-grid;
    grid-template-columns: 20px auto;
    min-height: 40px;
    padding: 7px 14px;
    column-gap: 8px;
    border-radius: 6px;
    font-size: 14px;
  }

  .header-cta .line-cta__icon {
    width: 20px;
    height: 20px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(4, 15, 29, .88) 0%, rgba(4, 15, 29, .68) 52%, rgba(4, 15, 29, .22) 100%);
  }

  .hero-background {
    object-position: center;
  }

  .hero-phone {
    right: -55px;
    bottom: -80px;
    width: 480px;
    opacity: .9;
    filter: saturate(.98) brightness(.92);
  }

  .hero-inner {
    width: min(100% - 64px, 1180px);
    padding-block: 54px;
  }

  .hero-copy {
    width: min(59%, 650px);
    padding: 38px 36px 32px;
    text-align: left;
  }

  .hero-title {
    margin-top: 24px;
    font-size: clamp(52px, 6vw, 72px);
    line-height: 1.1;
  }

  .hero-summary {
    margin-top: 24px;
    padding-top: 22px;
    font-size: 17px;
  }

  .hero-summary::before {
    left: 0;
    width: 76px;
    transform: none;
  }

  .hero-summary br {
    display: block;
  }

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

  .hero-cta-block {
    margin-top: 24px;
  }

  .hero-cta-block .cta-button {
    margin-left: 0;
  }

  .hero-cta-block > p {
    width: min(100%, 520px);
  }

  .section {
    padding-block: 96px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .capability-grid,
  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-item {
    min-height: 132px;
    padding: 19px;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .capability-item h3 {
    font-size: 19px;
  }

  .capability-item p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.75;
  }

  .line-screen-lead {
    font-size: 22px !important;
  }

  .line-screen-showcase {
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
  }

  .line-screen-main {
    width: min(100%, 450px);
  }

  .line-screen-preview-card {
    display: grid;
    grid-template-columns: minmax(210px, .9fr) minmax(260px, 1.1fr);
    align-items: center;
  }

  .line-screen-preview-card > div:last-child {
    padding: 24px 24px 24px 58px;
  }

  .line-screen-preview-card span {
    top: 26px;
    left: 24px;
  }

  .line-screen-preview-card h3 {
    font-size: 19px;
  }

  .line-screen-preview-card p {
    font-size: 14px;
  }

  .line-screen-dialog {
    width: min(900px, calc(100% - 48px));
    height: min(92dvh, 980px);
    margin: auto;
    border-radius: 8px;
  }

  .line-screen-dialog__shell {
    min-height: 100%;
  }

  .line-cta-band {
    padding: 40px 20px 42px;
  }

  .line-cta-inner .cta-kicker {
    font-size: 16px !important;
  }

  .case-summary {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 32px;
  }

  .case-summary div {
    padding: 18px 12px;
  }

  .case-summary div:last-child {
    grid-column: auto;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .case-summary dd {
    font-size: 20px;
  }

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

  .case-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .case-grid-compact .case-content {
    padding: 14px;
  }

  .case-grid-compact .case-content h3 {
    min-height: 0;
    font-size: 17px;
  }

  .case-grid-compact .case-content dl div {
    padding: 8px 0;
  }

  .case-grid-compact .case-content dt {
    font-size: 12px;
  }

  .case-grid-compact .case-content dd {
    font-size: 13px;
  }

  .case-grid-compact .case-content .case-price {
    font-size: 19px;
  }

  .case-categories {
    margin-top: 36px;
    padding: 28px;
  }

  .case-categories h3 {
    font-size: 28px;
  }

  .case-category-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .case-category-tags li {
    min-height: 58px;
    font-size: 14px;
  }

  .dark-cta {
    max-width: 720px;
    padding: 30px;
  }

  .information-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px 64px;
    align-items: start;
  }

  .information-items {
    margin-top: 0;
  }

  .information-note {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .flow-list li {
    padding: 24px;
  }

  .faq-container {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 64px;
    align-items: start;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .final-cta {
    padding-block: 92px;
  }

  .final-cta-title-mobile,
  .final-cta-description-mobile {
    display: none;
  }

  .final-cta-title-desktop,
  .final-cta-description-desktop {
    display: inline;
  }

  .company-layout {
    display: grid;
    grid-template-columns: .5fr 1.5fr;
    gap: 24px 64px;
    align-items: start;
  }

  .company dl {
    margin-top: 0;
  }

  .mobile-fixed-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .line-screen-viewer__open {
    width: min(100%, 470px);
    min-height: 54px;
  }

  html[data-desktop-fv="landscape"] .site-header {
    display: none;
  }

  html[data-desktop-fv="landscape"] .hero {
    width: 100%;
    height: min(66.6667vw, 960px, 100vh);
    height: min(66.6667vw, 960px, 100svh);
    min-height: 0;
    background: var(--navy-950);
  }

  html[data-desktop-fv="landscape"] .hero::before,
  html[data-desktop-fv="landscape"] .hero-background,
  html[data-desktop-fv="landscape"] .hero-phone {
    display: none;
  }

  html[data-desktop-fv="landscape"] .hero-desktop-visual {
    display: block;
    width: min(100%, 1440px, 150vh);
    width: min(100%, 1440px, 150svh);
    height: 100%;
    margin-inline: auto;
    object-fit: contain;
    object-position: center;
  }

  html[data-desktop-fv="landscape"] .hero.is-portrait-desktop-visual {
    height: min(62.5vw, 960px);
    background: var(--navy-950);
  }

  html[data-desktop-fv="landscape"] .hero.is-portrait-desktop-visual .hero-desktop-visual {
    object-fit: contain;
  }

  html[data-desktop-fv="landscape"] .hero-inner {
    position: absolute;
    inset-block: 0;
    left: 50%;
    width: min(100%, 1440px, 150vh);
    width: min(100%, 1440px, 150svh);
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
    pointer-events: none;
  }

  html[data-desktop-fv="landscape"] .hero-copy {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  html[data-desktop-fv="landscape"] .hero-category,
  html[data-desktop-fv="landscape"] .hero-title,
  html[data-desktop-fv="landscape"] .hero-summary,
  html[data-desktop-fv="landscape"] .hero-data-note,
  html[data-desktop-fv="landscape"] .hero-cta-block > p {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  html[data-desktop-fv="landscape"] .hero-cta-block {
    position: absolute;
    z-index: 2;
    top: 81.5%;
    left: 24.7%;
    width: 46.5%;
    height: 11%;
    margin: 0;
    pointer-events: auto;
  }

  html[data-desktop-fv="landscape"] .hero.is-portrait-desktop-visual .hero-cta-block {
    top: 82.3%;
    left: 28.2%;
    width: 43.6%;
    height: 11%;
  }

  html[data-desktop-fv="landscape"] .hero-cta-block .cta-button {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    color: transparent;
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  html[data-desktop-fv="landscape"] .hero-cta-block .line-cta__icon,
  html[data-desktop-fv="landscape"] .hero-cta-block .line-cta__label,
  html[data-desktop-fv="landscape"] .hero-cta-block .line-cta__arrow {
    visibility: hidden;
  }

  html[data-desktop-fv="landscape"] .hero-cta-block .cta-button:hover,
  html[data-desktop-fv="landscape"] .hero-cta-block .cta-button:focus-visible {
    background: rgba(255, 255, 255, .08);
    filter: none;
    transform: none;
  }

  html[data-desktop-fv="landscape"] .hero-cta-block .cta-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-phone {
    right: max(-10px, calc((100vw - 1280px) / 2));
    bottom: -78px;
    width: 560px;
  }

  .hero-copy {
    width: min(57%, 650px);
  }

  .hero-title {
    font-size: clamp(58px, 5.4vw, 72px);
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .line-screen-preview-card {
    grid-template-columns: 34% minmax(0, 66%);
  }
}

@media (min-width: 1200px) {
  .line-screen-section {
    padding-block: 88px;
  }

  .line-screen-section > .container {
    width: min(100% - 32px, 1220px);
  }

  .line-screen-showcase {
    grid-template-columns: minmax(0, .455fr) minmax(0, .545fr);
    gap: 32px;
  }

  .line-screen-main {
    width: min(100%, 500px);
  }

  .line-screen-preview-card {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .line-screen-preview-card > div:last-child {
    padding: 26px 26px 26px 62px;
  }

  .line-screen-preview-card span {
    top: 28px;
    left: 26px;
  }

  .line-screen-preview-card h3 {
    font-size: 20px;
  }

  .line-screen-preview-card p {
    font-size: 15px;
  }
}

@media (min-width: 1600px) {
  .line-screen-section > .container {
    width: min(100% - 64px, 1360px);
  }

  .line-screen-showcase {
    grid-template-columns: 560px minmax(0, 1fr);
  }

  .line-screen-main {
    width: 560px;
  }
}

@media (max-width: 359px) {
  .hero-copy {
    padding-inline: 14px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-category {
    font-size: 11.5px;
  }

  .cta-button {
    font-size: 15px;
  }

  .line-cta--large {
    grid-template-columns: 32px minmax(0, 1fr) 22px;
    min-height: 62px;
    padding-inline: 12px;
    column-gap: 8px;
  }

  .line-cta--large .line-cta__icon {
    width: 32px;
    height: 32px;
  }

  .line-cta--large .line-cta__arrow {
    width: 18px;
    height: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta-button,
  .line-cta,
  .mobile-fixed-cta {
    transition: none;
  }
}
