:root {
  color-scheme: light;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  background: #f0f0ee;
}

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

.more-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #f0f0ee;
}

.more-page__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.more-page__foreground {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
}

.more-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 16px 0;
}

.more-nav__logo {
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #ededed;
  transition: background-color 200ms ease, transform 200ms ease;
}

.more-nav__logo:hover {
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.more-nav__logo img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: contain;
}

.more-nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: #ededed;
}

.more-nav__links a {
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  transition: color 200ms ease;
}

.more-nav__links a:hover {
  color: #111827;
}

.more-nav__links a.is-active {
  color: #2563eb;
}

.more-hero {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  padding: 0 24px 40px;
}

.more-hero__content {
  width: 100%;
  max-width: 320px;
}

.more-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: #3b82f6;
  font-size: 11.5px;
  font-weight: 500;
  transition: color 200ms ease;
}

.more-hero__badge:hover {
  color: #2563eb;
}

.more-hero h1 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.more-hero p {
  margin: 0 0 12px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.more-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #60a5fa;
  border-radius: 9999px;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.more-hero__cta:hover {
  border-color: #3b82f6;
  background-color: #3b82f6;
  color: #fff;
}

.more-arrow-link span {
  display: inline-block;
  transition: transform 200ms ease;
}

.more-arrow-link:hover span {
  transform: translateX(2px);
}

.more-nav a:focus-visible,
.more-hero a:focus-visible,
.more-service-page a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}

.more-service-page {
  min-width: 320px;
  margin: 0;
  background: #f7f9fc;
  color: #101827;
}

.more-service-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
}

.more-nav--service .more-nav__links,
.more-nav--service .more-nav__logo {
  background: rgba(237, 237, 237, 0.94);
  backdrop-filter: blur(12px);
}

.more-service-hero {
  background: #f7f9fc;
}

.more-service-hero__content {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 142px 24px 72px;
}

.more-service-hero__back,
.more-service-hero__eyebrow {
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
}

.more-service-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  transition: color 200ms ease;
}

.more-service-hero__back:hover {
  color: #1d4ed8;
}

.more-service-hero__eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
}

.more-service-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  color: #0f172a;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.more-service-hero__summary {
  max-width: 700px;
  margin: 0 0 28px;
  color: #52627a;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.more-service-hero__cta,
.more-service-next__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid #60a5fa;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.more-service-hero__cta:hover,
.more-service-next__cta:hover {
  border-color: #93c5fd;
  background: #1d4ed8;
}

.more-service-media {
  position: relative;
  display: grid;
  min-height: min(74vh, 820px);
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #020713;
}

.more-service-media img {
  display: block;
  width: min(72vw, 760px);
  height: min(68vh, 760px);
  object-fit: contain;
}

.more-service-media figcaption {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 24px;
  max-width: 360px;
  color: #9fb2cc;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.more-service-details {
  padding: 88px 24px 96px;
  background: #fff;
  color: #0f172a;
}

.more-service-details__intro,
.more-service-highlights {
  width: min(100%, 1200px);
  margin-right: auto;
  margin-left: auto;
}

.more-service-details__intro {
  display: grid;
  gap: 18px;
  padding-bottom: 56px;
  border-bottom: 1px solid #dbe3ef;
}

.more-service-details__label {
  margin: 0;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.more-service-details__intro h2 {
  max-width: 900px;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}

.more-service-highlights {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 56px;
}

.more-service-highlight {
  min-width: 0;
  padding: 0 34px;
  border-left: 1px solid #dbe3ef;
}

.more-service-highlight:first-child {
  padding-left: 0;
  border-left: 0;
}

.more-service-highlight:last-child {
  padding-right: 0;
}

.more-service-highlight > span {
  display: block;
  margin-bottom: 40px;
  color: #3b82f6;
  font-size: 12px;
  font-weight: 700;
}

.more-service-highlight h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 650;
}

.more-service-highlight p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.more-service-workflow,
.more-service-faq {
  padding: 88px max(24px, calc((100vw - 1200px) / 2));
}

.more-service-workflow {
  background: #eef3f9;
  color: #0f172a;
}

.more-service-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 48px;
}

.more-service-section-head > p,
.more-service-scope__copy > p {
  margin: 0;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.more-service-section-head h2,
.more-service-scope h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.08;
}

.more-service-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbd6e5;
}

.more-service-steps article {
  min-width: 0;
  padding: 30px 32px 0;
  border-left: 1px solid #cbd6e5;
}

.more-service-steps article:first-child {
  padding-left: 0;
  border-left: 0;
}

.more-service-steps article:last-child {
  padding-right: 0;
}

.more-service-steps span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid #a9b9cd;
  border-radius: 50%;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

.more-service-steps h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.more-service-steps p {
  margin: 0;
  color: #5d6b7f;
  font-size: 14px;
  line-height: 1.65;
}

.more-service-scope {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 80px;
  padding: 96px max(24px, calc((100vw - 1200px) / 2));
  background: #081225;
  color: #f8fafc;
}

.more-service-scope__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.more-service-scope__copy > p {
  color: #7db4ff;
}

.more-service-scope__audience {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 56px;
}

.more-service-scope__audience span {
  color: #7db4ff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.more-service-scope__audience strong {
  max-width: 460px;
  color: #c9d5e6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.more-service-scope ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #263753;
  list-style: none;
}

.more-service-scope li {
  position: relative;
  padding: 19px 40px 19px 0;
  border-bottom: 1px solid #263753;
  color: #dce6f3;
  font-size: 15px;
}

.more-service-scope li::after {
  position: absolute;
  top: 17px;
  right: 0;
  color: #60a5fa;
  content: "✓";
}

.more-service-faq {
  background: #fff;
  color: #0f172a;
}

.more-service-faq__items {
  border-top: 1px solid #dbe3ef;
}

.more-service-faq details {
  border-bottom: 1px solid #dbe3ef;
}

.more-service-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: #152033;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.more-service-faq summary span {
  color: #2563eb;
  font-size: 22px;
  font-weight: 400;
  transition: transform 200ms ease;
}

.more-service-faq details[open] summary span {
  transform: rotate(45deg);
}

.more-service-faq details > p {
  max-width: 760px;
  margin: -8px 0 24px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.more-service-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px max(24px, calc((100vw - 1200px) / 2));
  background: #eef3f9;
}

.more-service-next p {
  margin: 0;
  color: #0f172a;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
}

@media (min-width: 640px) {
  .more-nav {
    gap: 12px;
    padding: 24px 32px 0;
  }

  .more-nav__logo {
    width: 44px;
    height: 44px;
  }

  .more-nav__links {
    gap: 40px;
    padding: 12px 32px;
  }

  .more-nav__links a {
    font-size: 14px;
  }

  .more-hero {
    padding: 0 48px 64px;
  }

  .more-hero h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .more-hero {
    padding-right: 80px;
    padding-left: 80px;
  }
}

@media (min-width: 1024px) {
  .more-hero {
    padding-right: 112px;
    padding-bottom: 80px;
    padding-left: 112px;
  }
}

@media (max-width: 420px) {
  .more-nav__links {
    gap: 13px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .more-nav__links a {
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .more-nav--service {
    align-items: flex-start;
  }

  .more-nav--service .more-nav__links {
    max-width: calc(100vw - 76px);
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .more-nav--service .more-nav__links::-webkit-scrollbar {
    display: none;
  }

  .more-nav--service .more-nav__links a {
    flex: 0 0 auto;
  }

  .more-service-hero__content {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .more-service-hero__back {
    margin-bottom: 28px;
  }

  .more-service-media {
    min-height: 64vh;
    min-height: 64svh;
  }

  .more-service-media img {
    width: 100%;
    height: 60vh;
    height: 60svh;
  }

  .more-service-media figcaption {
    right: 20px;
    bottom: 16px;
    left: 20px;
    text-align: left;
  }

  .more-service-details,
  .more-service-workflow,
  .more-service-faq {
    padding: 64px 24px;
  }

  .more-service-highlights {
    grid-template-columns: 1fr;
  }

  .more-service-highlight,
  .more-service-highlight:first-child,
  .more-service-highlight:last-child {
    padding: 26px 0;
    border-top: 1px solid #dbe3ef;
    border-left: 0;
  }

  .more-service-highlight:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .more-service-highlight > span {
    margin-bottom: 16px;
  }

  .more-service-steps {
    grid-template-columns: 1fr;
  }

  .more-service-steps article,
  .more-service-steps article:first-child,
  .more-service-steps article:last-child {
    padding: 26px 0;
    border-top: 1px solid #cbd6e5;
    border-left: 0;
  }

  .more-service-steps article:first-child {
    border-top: 0;
  }

  .more-service-steps span {
    margin-bottom: 18px;
  }

  .more-service-scope {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 68px 24px;
  }

  .more-service-scope__audience {
    margin-top: 20px;
    padding-top: 0;
  }

  .more-service-next {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .more-page *,
  .more-page *::before,
  .more-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
