@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --bg: #f4f6f1;
  --surface: #fffefa;
  --surface-soft: #ecefe7;
  --ink: #151817;
  --muted: #626b67;
  --quiet: #87908b;
  --line: rgba(21, 24, 23, 0.13);
  --line-strong: rgba(21, 24, 23, 0.22);
  --accent: #5147e8;
  --accent-strong: #3f36c9;
  --dark: #101514;
  --dark-2: #1d2422;
  --white: #ffffff;
  --radius: 8px;
  --shadow-soft: 0 24px 80px rgba(21, 24, 23, 0.12);
  --shadow-media: 0 34px 100px rgba(21, 24, 23, 0.18);
  --anchor-offset: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 246, 241, 0.72) 35%, rgba(234, 237, 230, 0.86)),
    var(--bg);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(81, 71, 232, 0.44);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

p {
  text-wrap: pretty;
  word-break: keep-all;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(21, 24, 23, 0.09);
  background: rgba(244, 246, 241, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(81, 71, 232, 0.18);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
}

.nav-cta:hover {
  background: var(--accent);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  overflow: hidden;
  border-bottom: 1px solid rgba(21, 24, 23, 0.08);
  background:
    linear-gradient(90deg, rgba(244, 246, 241, 1) 0%, rgba(244, 246, 241, 1) 42%, rgba(244, 246, 241, 0.74) 64%, rgba(244, 246, 241, 0.94) 100%),
    var(--surface-soft);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 52%, rgba(244, 246, 241, 0.86) 61%, transparent 69%);
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 82px;
  right: max(20px, calc((100% - 1180px) / 2));
  width: min(560px, 43%);
  aspect-ratio: 1.34;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, 0.16);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-media);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding-top: 98px;
  padding-bottom: 76px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 82px;
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 540px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.58;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 254, 250, 0.74);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(81, 71, 232, 0.42);
  color: var(--accent-strong);
}

.button.light {
  background: var(--white);
  color: var(--accent-strong);
}

.button.light:hover {
  background: #f0efff;
}

.signal-section {
  padding: 18px 0 30px;
}

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

.signal-item {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 254, 250, 0.72);
}

.signal-item strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.signal-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.feature-copy h2,
.multiview-copy h2,
.final-cta h2 {
  font-size: 56px;
  line-height: 1.04;
}

.section-lead,
.feature-copy p,
.multiview-copy p,
.final-cta p {
  max-width: 700px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.service-note {
  max-width: 720px;
  margin-top: 16px;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.7;
}

.service-note a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: start;
}

.problem-list {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.problem-item {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.problem-item h3 {
  font-size: 23px;
  line-height: 1.25;
}

.problem-item p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.workflow-section {
  border-top: 1px solid rgba(21, 24, 23, 0.07);
  background: rgba(255, 254, 250, 0.34);
}

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

.workflow-card {
  min-width: 0;
}

.workflow-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, 0.14);
  border-radius: var(--radius);
  background: var(--dark);
  filter: saturate(0.96) contrast(1.02);
  box-shadow: 0 18px 52px rgba(21, 24, 23, 0.08);
}

.workflow-card span {
  display: inline-flex;
  margin: 18px 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.workflow-card h3 {
  font-size: 22px;
  line-height: 1.24;
}

.workflow-card p {
  min-height: 92px;
  padding: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: 58px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line-strong);
}

.feature-list div {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.feature-list dt {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.feature-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.feature-media-grid {
  display: grid;
  width: min(100%, 640px);
  align-items: stretch;
  justify-self: end;
}

.media-tile {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, 0.16);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-soft);
}

.media-tile.large {
  aspect-ratio: 1 / 1;
}

.media-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.03);
}

.media-tile.large img {
  min-height: 0;
}

.multiview-section {
  padding-top: 76px;
}

.multiview-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1.18fr) minmax(0, 0.82fr);
  gap: 58px;
  align-items: center;
}

.multiview-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 23, 0.16);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-media);
}

.multiview-shot img {
  width: 100%;
  height: auto;
  filter: saturate(0.96) contrast(1.02);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.capability-grid span {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 800;
}

.use-section {
  background: rgba(236, 239, 231, 0.72);
}

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

.use-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.use-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.04);
}

.use-card h3 {
  padding: 20px 20px 0;
  font-size: 20px;
  line-height: 1.28;
}

.use-card p {
  min-height: 112px;
  padding: 10px 20px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.final-cta {
  padding: 64px 0 80px;
}

.final-cta-inner {
  overflow: hidden;
  border-radius: var(--radius);
  padding: 64px 48px;
  background:
    linear-gradient(135deg, var(--accent), #171a18 72%),
    var(--dark);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-media);
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 38px 0 46px;
  color: var(--muted);
  background: rgba(255, 254, 250, 0.42);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.motion-reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    width: min(820px, calc(100% - 40px));
    margin: 0 auto 42px;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 34px;
    text-align: center;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .signal-grid,
  .workflow-grid,
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-copy,
  .feature-layout,
  .multiview-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-media-grid,
  .multiview-shot {
    max-width: 820px;
  }

  .multiview-copy,
  .feature-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    background: rgba(244, 246, 241, 0.94);
  }

  .nav {
    min-height: 64px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 15px;
  }

  .hero-content {
    padding-top: 46px;
    padding-bottom: 26px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.62;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-media {
    width: min(100% - 28px, 620px);
    margin-bottom: 28px;
  }

  .signal-section {
    padding-top: 14px;
  }

  .signal-grid,
  .workflow-grid,
  .use-grid,
  .feature-media-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .feature-copy h2,
  .multiview-copy h2,
  .final-cta h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .section-lead,
  .feature-copy p,
  .multiview-copy p,
  .final-cta p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  .problem-item h3 {
    font-size: 20px;
  }

  .workflow-card p,
  .use-card p {
    min-height: auto;
  }

  .workflow-card img,
  .use-card img {
    height: 220px;
  }

  .media-tile.large {
    min-height: auto;
  }

  .media-tile img {
    min-height: auto;
    aspect-ratio: 1;
  }

  .multiview-section {
    padding-top: 52px;
  }

  .final-cta {
    padding: 34px 0 54px;
  }

  .final-cta-inner {
    padding: 44px 20px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .signal-item {
    min-height: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .motion-reveal,
  .motion-ready .motion-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
