@font-face {
  font-family: "NT Somic";
  src: url("/soft/assets/nt-somic-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "NT Somic";
  src: url("/soft/assets/nt-somic-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --ink: #161a22;
  --muted: #667085;
  --line: #dfe3e9;
  --paper: #f4f5f7;
  --white: #fff;
  --orange: #f26222;
  --blue: #087fe7;
  --dark: #121316;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "NT Somic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgb(223 227 233 / .82);
  background: rgb(244 245 247 / .88);
  backdrop-filter: blur(18px);
}
.site-header .wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.brand span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover { color: var(--ink); }
.button {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); background: #006fd0; }
.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}
.button.dark { background: var(--dark); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero {
  padding: 84px 0 68px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 70px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.045em;
}
.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.product-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: #17191d;
}
.product-visual::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(90px);
  opacity: .35;
}
.product-visual img {
  position: relative;
  width: min(520px, 88%);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgb(0 0 0 / .34);
}
.product-case-hero {
  padding-bottom: 0;
  background: #f4f7fb;
}
.product-case-hero .wrap > div:first-child {
  max-width: 980px;
}
.product-case-hero h1 {
  max-width: 1050px;
  font-size: clamp(54px, 8.5vw, 112px);
}
.product-case-cover {
  margin: 70px 0 0;
  padding: clamp(18px, 4vw, 54px) clamp(12px, 3vw, 42px) 0;
  overflow: hidden;
  border: 1px solid #dce3ec;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: #e9f1fb;
}
.product-case-cover img {
  display: block;
  width: 100%;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 24px 70px rgb(30 55 90 / .16);
}
.product-story {
  background: #fff;
}
.product-story-copy {
  max-width: 900px;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.35;
}
.product-story-copy p {
  margin-bottom: 24px;
}
.product-story-copy p:last-child {
  margin-bottom: 0;
}
.product-gallery {
  padding: 0 0 76px;
}
.product-gallery-grid {
  display: grid;
  gap: 16px;
}
.product-gallery figure {
  margin: 0;
  padding: clamp(12px, 2.5vw, 32px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #eaf2fb;
}
.product-gallery figure:nth-child(2) {
  background: #f1f4f8;
}
.product-gallery figure:nth-child(3) {
  background: #fff;
}
.product-gallery img {
  display: block;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 52px rgb(29 47 76 / .14);
}
.product-download {
  padding-top: 0;
}
.product-download-card {
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.product-download-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.035em;
}
.product-download-card p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}
.download-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.download-option {
  min-height: 88px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.download-option > div {
  display: grid;
  gap: 3px;
}
.download-option strong {
  font-size: 20px;
}
.download-option span {
  color: var(--muted);
  font-size: 14px;
}
.download-option .button {
  min-width: 146px;
}
.section { padding: 74px 0; }
.section-head {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.035em;
}
.section-head p { max-width: 520px; margin-bottom: 0; color: var(--muted); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.case-card {
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  text-decoration: none;
}
.case-card.featured {
  grid-column: 1 / -1;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 44px;
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}
.case-card h2, .case-card h3 { letter-spacing: -.025em; }
.case-card h2 { margin-bottom: 16px; font-size: clamp(38px, 5vw, 66px); line-height: 1; }
.case-card h3 { margin-bottom: 12px; font-size: 30px; }
.case-card p { color: var(--muted); }
.case-card.featured p { color: #b8bec8; font-size: 18px; }
.case-tag {
  align-self: flex-start;
  margin-bottom: 54px;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--orange);
  background: rgb(242 98 34 / .1);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.case-card.featured .case-tag { color: #ff9160; background: rgb(242 98 34 / .16); }
.case-link { margin-top: auto; font-weight: 700; }
.case-art {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.case-art img.screenshot {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgb(0 0 0 / .38);
}
.case-art img.icon {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 112px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgb(0 0 0 / .38);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  min-height: 205px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature strong { display: block; margin-bottom: 34px; color: var(--orange); font-size: 13px; }
.feature h3 { margin-bottom: 8px; font-size: 22px; }
.feature p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.legal {
  padding: 70px 0 90px;
}
.legal-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  justify-content: center;
  gap: 70px;
}
.legal-menu {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 8px;
}
.legal-menu a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.legal-menu a.current { color: var(--ink); }
.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
}
.legal-date { margin-bottom: 40px; color: var(--muted); font-size: 14px; }
.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 25px;
  letter-spacing: -.02em;
}
.legal-content p, .legal-content li { color: #4d5563; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-callout {
  margin: 28px 0;
  padding: 20px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

/* LOSLA policy-style legal page */
.policy-reference {
  color: #0a0a0a;
  background: #fff;
}
.policy-losla-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: #fff;
  background: #0a0a0a;
}
.policy-losla-header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}
.policy-losla-brand,
.policy-losla-footer-brand {
  color: #fff;
  font-family: "Unbounded", "NT Somic", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.04em;
  text-decoration: none;
}
.policy-losla-brand span,
.policy-losla-footer-brand span { color: var(--orange); }
.policy-losla-nav,
.policy-losla-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.policy-losla-nav a,
.policy-losla-actions > a:not(.policy-losla-cta) {
  color: rgb(255 255 255 / .72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.policy-losla-nav a:hover,
.policy-losla-actions > a:not(.policy-losla-cta):hover { color: #fff; }
.policy-losla-cta {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  border: 1px solid rgb(255 255 255 / .34);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.policy-reference-back {
  margin: 0 0 34px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a0a0a;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease;
}
.policy-reference-back:hover { opacity: .68; }
.policy-reference-main {
  padding: 78px 0 70px;
}
.policy-reference-main .legal-shell {
  max-width: 1000px;
  display: block;
}
.policy-reference-title {
  max-width: none;
  margin: 0 0 42px;
  color: #0a0a0a;
  font-family: "Unbounded", "NT Somic", sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  text-align: center;
}
.policy-reference-tabs {
  position: static;
  display: flex;
  gap: 12px;
  margin: 0 0 42px;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 2px solid #e0e0e0;
  scrollbar-width: none;
}
.policy-reference-tabs::-webkit-scrollbar { display: none; }
.policy-reference-tabs a {
  margin-bottom: -2px;
  padding: 16px 24px;
  flex: 0 0 auto;
  color: rgb(10 10 10 / .5);
  border-bottom: 3px solid transparent;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.policy-reference-tabs a:hover { color: #0a0a0a; }
.policy-reference-tabs a.current {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.policy-reference .legal-content {
  max-width: 1000px;
  animation: policy-reference-enter .3s ease both;
}
.policy-reference .legal-date {
  margin-bottom: 28px;
  color: rgb(10 10 10 / .55);
}
.policy-reference .legal-content h2 {
  margin: 42px 0 16px;
  color: #0a0a0a;
  font-family: "Unbounded", "NT Somic", sans-serif;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -.035em;
}
.policy-reference .legal-content p,
.policy-reference .legal-content li {
  color: rgb(10 10 10 / .8);
  font-size: 16px;
  line-height: 1.65;
}
.policy-reference .legal-content a {
  color: var(--orange);
  text-underline-offset: 3px;
}
.policy-reference-contact {
  margin: 24px 0;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 12px;
}
.policy-reference-contact p { margin-bottom: 8px; }
.policy-reference-contact p:last-child { margin-bottom: 0; }
.policy-losla-footer {
  padding: 64px 0 26px;
  color: #fff;
  background: #0a0a0a;
}
.policy-losla-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, .7fr));
  gap: 42px;
}
.policy-losla-footer-grid > div,
.policy-losla-footer-grid nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.policy-losla-footer-grid strong {
  margin-bottom: 6px;
  color: rgb(255 255 255 / .45);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.policy-losla-footer-grid p,
.policy-losla-footer-grid a {
  margin: 0;
  color: rgb(255 255 255 / .72);
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
}
.policy-losla-footer-grid a:hover { color: #fff; }
.policy-losla-footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgb(255 255 255 / .4);
  border-top: 1px solid rgb(255 255 255 / .13);
  font-size: 12px;
}
@keyframes policy-reference-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
@media (max-width: 850px) {
  .wrap { width: min(100% - 28px, 680px); }
  .site-nav a:not(.button) { display: none; }
  .hero { padding-top: 56px; }
  .hero-grid, .case-card.featured, .legal-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .product-visual { min-height: 360px; }
  .case-card.featured { gap: 18px; }
  .case-grid, .feature-grid { grid-template-columns: 1fr; }
  .case-card.featured { grid-column: auto; }
  .legal-menu { position: static; grid-template-columns: repeat(3, auto); overflow-x: auto; }
  .legal-shell { gap: 34px; }
  .product-download-card { grid-template-columns: 1fr; align-items: start; }
  .policy-losla-header-inner {
    min-height: 66px;
    grid-template-columns: auto 1fr;
    gap: 18px;
  }
  .policy-losla-nav { display: none; }
  .policy-losla-actions { justify-self: end; gap: 14px; }
  .policy-losla-cta { min-height: 38px; padding-inline: 12px; }
  .policy-reference-main { padding-top: 46px; }
  .policy-reference-back {
    margin-bottom: 24px;
    padding: 6px 0;
    font-size: 14px;
  }
  .policy-reference-title { margin-top: 20px; }
  .policy-reference-tabs {
    display: flex;
    grid-template-columns: none;
    gap: 4px;
  }
  .policy-losla-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-option {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .download-option .button {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .site-header .wrap { min-height: 64px; }
  .site-nav .button { min-height: 40px; padding-inline: 13px; font-size: 13px; }
  h1 { font-size: 48px; }
  .hero-copy { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .product-visual { min-height: 290px; }
  .case-card { min-height: 320px; padding: 22px; }
  .case-card.featured { min-height: 0; }
  .case-art { min-height: 260px; }
  .case-art img.icon { width: 78px; border-radius: 18px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .site-footer .wrap { align-items: flex-start; flex-direction: column; }
  .policy-reference-title {
    margin-bottom: 30px;
    font-size: 31px;
  }
  .policy-reference-tabs { margin-bottom: 32px; }
  .policy-reference-tabs a {
    padding: 12px 15px;
    font-size: 14px;
  }
  .policy-reference .legal-content h2 { margin-top: 34px; }
  .policy-losla-actions > a:not(.policy-losla-cta) { display: none; }
  .policy-losla-cta { font-size: 10px; }
  .policy-losla-footer-grid { grid-template-columns: 1fr; }
  .policy-losla-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
