:root {
  --nk-main-color: #0f5f73;
  --nk-sub-color: #f2f7f9;
  --nk-text-color: #1f2937;
  --nk-bg-color: #ffffff;
  --nk-company-color: #0f5f73;
  --nk-company-size: 28px;
  --nk-company-weight: 700;
  --nk-base-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--nk-text-color);
  background: var(--nk-bg-color);
  font-family: var(--nk-base-font);
  line-height: 1.75;
  letter-spacing: .01em;
}

a {
  color: var(--nk-main-color);
}

img,
video,
iframe {
  max-width: 100%;
}

.nk-site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  position: relative;
  z-index: 20;
}

.nk-header-inner,
.nk-footer-inner,
.nk-content {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.nk-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nk-branding {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nk-company-name {
  display: inline-block;
  color: var(--nk-company-color);
  font-size: var(--nk-company-size);
  font-weight: var(--nk-company-weight);
  line-height: 1.12;
  letter-spacing: .03em;
  text-decoration: none;
}

.nk-company-subtitle {
  color: #64748b;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nk-content {
  padding: 56px 0;
}

.nk-entry-content {
  font-size: 17px;
}

.nk-entry-content > *:first-child {
  margin-top: 0;
}

.nk-hero {
  position: relative;
  min-height: clamp(440px, 58vw, 780px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 95, 115, .22), transparent 34%),
    linear-gradient(135deg, #0f5f73, #111827);
}

.nk-hero.has-media {
  background: #111827;
}

.nk-hero-picture,
.nk-hero-media,
.nk-hero-video-bg,
.nk-hero-youtube,
.nk-hero-video-fallback,
.nk-slider-track,
.nk-slide,
.nk-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nk-hero-media,
.nk-hero-video-bg,
.nk-hero-video-fallback,
.nk-slide img {
  object-fit: cover;
  display: block;
}

.nk-hero-youtube {
  border: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.18);
  transform-origin: center;
  pointer-events: none;
}

.nk-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.20)),
    linear-gradient(0deg, rgba(0,0,0,.12), rgba(0,0,0,.12));
  z-index: 1;
}

.nk-hero-overlay {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  color: #fff;
  padding: 64px 0;
}

.nk-hero-overlay h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.12;
  letter-spacing: .02em;
}

.nk-hero-overlay p {
  max-width: 720px;
  font-size: clamp(16px, 2.1vw, 24px);
  margin: 0 0 30px;
}

.nk-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--nk-main-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  transition: transform .2s ease, filter .2s ease;
}

.nk-cta-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nk-hero-slider .nk-slide {
  opacity: 0;
  transition: opacity .7s ease;
}

.nk-hero-slider .nk-slide.is-active {
  opacity: 1;
}

.nk-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: #111827;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.nk-slider-prev {
  left: 22px;
}

.nk-slider-next {
  right: 22px;
}

.nk-slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.nk-slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
  cursor: pointer;
}

.nk-slider-dot.is-active {
  background: #fff;
}

.nk-site-footer {
  margin-top: 64px;
  padding: 34px 0;
  background: #0f172a;
  color: #fff;
}

.nk-footer-company {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 18px;
}

.nk-footer-text {
  margin: 0;
  color: rgba(255,255,255,.72);
}

@media (max-width: 1024px) {
  .nk-hero {
    min-height: 560px;
  }

  .nk-hero-youtube {
    transform: scale(1.42);
  }
}

@media (max-width: 767px) {
  .nk-header-inner {
    min-height: 72px;
  }

  .nk-company-name {
    font-size: min(var(--nk-company-size), 24px);
  }

  .nk-hero {
    min-height: 620px;
  }

  .nk-hero-overlay {
    padding: 44px 0;
  }

  .nk-hero-youtube,
  .nk-hero-video-bg {
    display: none;
  }

  .nk-hero-video-fallback {
    display: block;
  }

  .nk-slider-arrow {
    display: none;
  }

  .nk-content {
    padding: 40px 0;
  }
}


/* Page layout templates */
.nk-template {
  width: 100%;
}

.nk-template .nk-layout-article {
  margin-inline: auto;
}

.nk-template .nk-page-title-area {
  margin-bottom: 28px;
}

.nk-template .nk-page-title-area h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
}

.nk-template-one-column,
.nk-template-two-column,
.nk-template-three-column,
.nk-template-two-column-7-3,
.nk-template-two-column-3-7 {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 56px 0;
}

.nk-template-full-wide {
  width: 100%;
  padding: 0;
}

.nk-template-full-wide .nk-layout-article {
  width: 100%;
}

.nk-template-full-wide .nk-page-title-area,
.nk-template-full-wide .nk-entry-content > * {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.nk-template-full-wide .nk-entry-content > .alignfull,
.nk-template-full-wide .nk-entry-content > .wp-block-cover,
.nk-template-full-wide .nk-entry-content > .wp-block-group.alignfull {
  width: 100%;
  max-width: none;
}

.nk-template-lp {
  width: 100%;
  padding: 0;
}

.nk-template-lp .nk-layout-article {
  width: 100%;
}

.nk-template-lp .nk-entry-content > * {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.nk-template-lp .nk-entry-content > .alignfull,
.nk-template-lp .nk-entry-content > .wp-block-cover,
.nk-template-lp .nk-entry-content > .wp-block-group.alignfull {
  width: 100%;
  max-width: none;
}

.nk-template-lp .nk-entry-content > .alignwide {
  width: min(1380px, calc(100% - 32px));
}

.nk-layout-grid {
  display: grid;
  gap: 32px;
}

.nk-layout-grid-one-column,
.nk-layout-grid-full-wide,
.nk-layout-grid-lp {
  grid-template-columns: 1fr;
}

.nk-layout-grid-two-column {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.nk-layout-grid-two-column-7-3 {
  grid-template-columns: minmax(0, 7fr) minmax(240px, 3fr);
}

.nk-layout-grid-two-column-3-7 {
  grid-template-columns: minmax(240px, 3fr) minmax(0, 7fr);
}

.nk-layout-two-column-3-7 .nk-layout-main {
  order: 2;
}

.nk-layout-two-column-3-7 .nk-layout-side-1 {
  order: 1;
}

.nk-layout-grid-three-column {
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr) minmax(220px, 1fr);
}

.nk-layout-three-column .nk-layout-main {
  order: 2;
}

.nk-layout-three-column .nk-layout-side-1 {
  order: 1;
}

.nk-layout-three-column .nk-layout-side-2 {
  order: 3;
}

.nk-layout-main,
.nk-layout-side {
  min-width: 0;
}

.nk-layout-side {
  align-self: start;
}

.nk-widget,
.nk-layout-placeholder {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.nk-widget-title,
.nk-layout-placeholder h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.nk-layout-placeholder p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .nk-layout-grid-two-column,
  .nk-layout-grid-two-column-7-3,
  .nk-layout-grid-two-column-3-7,
  .nk-layout-grid-three-column {
    grid-template-columns: 1fr;
  }

  .nk-layout-two-column-3-7 .nk-layout-main,
  .nk-layout-two-column-3-7 .nk-layout-side-1,
  .nk-layout-three-column .nk-layout-main,
  .nk-layout-three-column .nk-layout-side-1,
  .nk-layout-three-column .nk-layout-side-2 {
    order: initial;
  }
}

@media (max-width: 767px) {
  .nk-template-one-column,
  .nk-template-two-column,
  .nk-template-three-column,
  .nk-template-two-column-7-3,
  .nk-template-two-column-3-7 {
    padding: 40px 0;
  }
}
