:root {
  --ink: #171626;
  --ink-soft: #59576a;
  --paper: #f5f2ec;
  --paper-deep: #ebe7df;
  --white: #ffffff;
  --violet: #292478;
  --violet-light: #7772ff;
  --line: rgba(23, 22, 38, 0.14);
  --green: #00d9aa;
  --night-green: #041916;
  --gold: #f1c95d;
  --header-height: 84px;
  --shell: min(1180px, calc(100vw - 48px));
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--violet-light);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(245, 242, 236, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 22, 38, 0.05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--violet);
  text-decoration: none;
}

.brand-symbol {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.brand-name {
  font-size: 15px;
  font-weight: 760;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 64px 0 76px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 6.1vw, 5.25rem);
  font-weight: 740;
}

h2 {
  max-width: 860px;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  font-weight: 710;
}

h3 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 720;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 690;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

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

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

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

.button-light:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.text-link {
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.text-link:hover {
  border-bottom-color: currentColor;
}

.hero-art {
  min-height: 570px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--violet);
  color: var(--white);
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.hero-art::before {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
}

.hero-art::after {
  width: 610px;
  height: 610px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
}

.hero-art-top,
.hero-art-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mark {
  width: min(52%, 230px);
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -58%);
  color: var(--white);
}

.hero-mark svg {
  fill: currentColor;
}

.hero-art-statement {
  position: relative;
  z-index: 2;
  margin: auto 0 38px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero-art-statement span {
  color: #b8b5ff;
}

.section {
  padding-block: 132px;
}

.products {
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  padding-top: 12px;
}

.product {
  min-height: 600px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  color: var(--white);
}

.product + .product {
  margin-top: 28px;
}

.product-codigma {
  background: var(--night-green);
}

.product-striker {
  grid-template-columns: 1.03fr 0.97fr;
  background: #11231b;
}

.product-copy {
  min-width: 0;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
}

.product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product h3 {
  color: var(--white);
}

.product-lead {
  margin: 18px 0 14px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.35;
}

.product-copy > div > p:not(.product-lead) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 650;
}

.feature-list li {
  position: relative;
  padding-left: 13px;
}

.feature-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0.68em;
  left: 0;
  background: var(--green);
  border-radius: 50%;
}

.product-striker .feature-list li::before {
  background: var(--gold);
}

.product-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.product-link:hover {
  border-bottom-color: currentColor;
}

.product-visual {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-visual:hover img {
  transform: scale(1.025);
}

.codigma-visual img {
  object-position: center;
}

.striker-visual img {
  object-position: center 48%;
}

.striker-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.striker-title img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 15px;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-copy {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.about-copy p {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 610;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.about-copy a {
  color: var(--violet);
  font-weight: 650;
}

.company-facts {
  margin-top: 92px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.95fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-width: 0;
  padding: 28px 28px 30px 0;
}

.fact + .fact {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.fact-label {
  display: block;
  margin-bottom: 13px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.contact {
  background: var(--violet);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: 120px;
  align-items: start;
}

.contact .eyebrow {
  color: #c8c5ff;
}

.contact h2 {
  max-width: 630px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-group {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-label {
  grid-row: 1 / span 4;
  color: #c8c5ff;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-group a,
.contact-group address {
  width: fit-content;
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  text-decoration: none;
}

.contact-group a:hover {
  text-decoration: underline;
}

.map-link {
  margin-top: 12px;
  color: #d4d2ff !important;
  font-weight: 650;
}

.site-footer {
  padding: 36px 0;
  background: #17152a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand-footer {
  color: var(--white);
}

.footer-copy {
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}

.footer-link {
  justify-self: end;
  color: inherit;
  font-size: 12px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 92px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-art {
    min-height: 500px;
  }

  .section {
    padding-block: 104px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

  .product,
  .product-striker {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-codigma .product-copy {
    order: 2;
  }

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

  .codigma-visual {
    min-height: auto;
    aspect-ratio: 1200 / 630;
  }

  .striker-visual {
    height: 680px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-copy {
    padding-top: 32px;
  }

  .company-facts {
    grid-template-columns: 1fr;
    margin-top: 68px;
  }

  .fact,
  .fact + .fact {
    padding: 24px 0;
    border-left: 0;
  }

  .fact + .fact {
    border-top: 1px solid var(--line);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 52;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100dvh - var(--header-height));
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 260ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    font-size: 1.35rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    width: auto;
    margin-top: 16px;
    padding: 14px 20px;
    font-size: 15px;
    border-bottom-color: var(--ink);
  }

  .hero {
    padding: 48px 0 76px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.5rem);
  }

  h3 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-art {
    min-height: 430px;
    padding: 22px;
  }

  .hero-art-statement {
    margin-bottom: 28px;
  }

  .section {
    padding-block: 82px;
  }

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

  .product-copy {
    padding: 28px 22px 32px;
    gap: 38px;
  }

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

  .codigma-visual {
    min-height: auto;
  }

  .striker-visual {
    height: 520px;
  }

  .feature-list {
    gap: 8px 18px;
  }

  .striker-title {
    align-items: flex-end;
    gap: 14px;
  }

  .striker-title img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .about-grid {
    gap: 42px;
  }

  .company-facts {
    margin-top: 56px;
  }

  .contact-grid {
    gap: 56px;
  }

  .contact-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-label {
    grid-row: auto;
  }

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

  .footer-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
