:root {
  --nnok-page: #06090e;
  --nnok-panel: #0f1722;
  --nnok-panel-2: #131d2a;
  --nnok-panel-3: #182332;
  --nnok-line: rgba(255, 255, 255, .13);
  --nnok-line-strong: rgba(255, 171, 49, .34);
  --nnok-text: #f8fafc;
  --nnok-muted: #a9b4c2;
  --nnok-dim: #798697;
  --nnok-orange: #ff8a00;
  --nnok-orange-2: #ffb238;
  --nnok-gold: #ffd36f;
  --nnok-green: #38d783;
  --nnok-red: #ff5b4a;
  --nnok-shadow: 0 24px 64px rgba(0, 0, 0, .36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.nnok-page {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 138, 0, .14), transparent 34rem),
    radial-gradient(circle at 12% 20%, rgba(255, 210, 111, .08), transparent 28rem),
    var(--nnok-page);
  color: var(--nnok-text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.nnok-page a {
  color: inherit;
}

.nnok-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.nnok-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--nnok-line);
  background: rgba(6, 9, 14, .94);
  backdrop-filter: blur(18px);
}

.nnok-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.nnok-brand,
.nnok-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nnok-text);
  text-decoration: none;
  white-space: nowrap;
}

.nnok-brand:hover,
.nnok-footer-brand:hover,
.nnok-nav a:hover {
  text-decoration: none;
}

.nnok-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 178, 56, .42);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, .28), rgba(255, 255, 255, .04)),
    url("/assets/nnok-mark.jpg") center / cover no-repeat;
  box-shadow: 0 12px 28px rgba(255, 138, 0, .22);
}

.nnok-logo-text {
  display: grid;
  line-height: 1;
}

.nnok-logo-main {
  color: var(--nnok-orange-2);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

.nnok-logo-sub {
  margin-top: 3px;
  color: rgba(248, 250, 252, .78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nnok-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 26px;
}

.nnok-nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(248, 250, 252, .84);
  border-bottom: 4px solid transparent;
  padding: 32px 0 28px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nnok-nav a:hover,
.nnok-nav a.is-active {
  color: var(--nnok-orange-2);
  border-bottom-color: var(--nnok-orange);
}

.nnok-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nnok-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  color: #241200;
  background: linear-gradient(180deg, #ffc253 0%, #ff8500 100%);
  box-shadow: 0 14px 30px rgba(255, 138, 0, .28);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nnok-button:hover {
  color: #241200;
  transform: translateY(-1px);
  text-decoration: none;
}

.nnok-button-ghost {
  color: var(--nnok-text);
  border-color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .05);
  box-shadow: none;
}

.nnok-button-ghost:hover {
  color: var(--nnok-text);
  background: rgba(255, 255, 255, .1);
}

.nnok-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 138, 0, .2);
  background:
    linear-gradient(112deg, rgba(6, 8, 12, .98) 0%, rgba(10, 16, 24, .98) 45%, rgba(26, 15, 8, .98) 100%);
}

.nnok-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    linear-gradient(116deg, transparent 0 52%, rgba(255, 138, 0, .18) 52.4%, transparent 53%),
    linear-gradient(126deg, transparent 0 63%, rgba(255, 211, 111, .15) 63.4%, transparent 64%),
    linear-gradient(136deg, transparent 0 73%, rgba(255, 138, 0, .16) 73.4%, transparent 74%);
  pointer-events: none;
}

.nnok-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  gap: 34px;
  align-items: center;
  padding: 74px 0 64px;
}

.nnok-hero-copy,
.nnok-hero-media,
.nnok-section-head > *,
.nnok-split > *,
.nnok-update-layout > *,
.nnok-article-grid > *,
.nnok-static-grid > * {
  min-width: 0;
}

.nnok-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--nnok-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nnok-kicker::before {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nnok-orange), var(--nnok-gold));
}

.nnok-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: 78px;
  line-height: 1.08;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.nnok-hero h1 strong {
  color: var(--nnok-orange-2);
}

.nnok-hero-desc {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(248, 250, 252, .82);
  font-size: 18px;
  line-height: 1.8;
}

.nnok-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.nnok-hero-media {
  position: relative;
  min-height: 520px;
}

.nnok-hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 2% 0 8%;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 138, 0, .22), rgba(255, 255, 255, .04));
  filter: blur(2px);
  transform: rotate(-4deg);
}

.nnok-hero-image {
  position: relative;
  width: 100%;
  min-height: 500px;
  border: 1px solid rgba(255, 178, 56, .38);
  border-radius: 24px;
  overflow: hidden;
  background: #0b1119;
  box-shadow: var(--nnok-shadow);
}

.nnok-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.nnok-floating-card {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  min-width: 240px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(8, 13, 20, .86);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .4);
  backdrop-filter: blur(12px);
}

.nnok-floating-card span {
  color: var(--nnok-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nnok-floating-card strong {
  color: var(--nnok-orange-2);
  font-size: 24px;
  line-height: 1.15;
}

.nnok-proof {
  border-bottom: 1px solid var(--nnok-line);
  background: rgba(10, 15, 22, .92);
}

.nnok-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-left: 1px solid var(--nnok-line);
  border-right: 1px solid var(--nnok-line);
  background: var(--nnok-line);
}

.nnok-proof-item {
  min-height: 128px;
  padding: 26px 24px;
  background: #0b1119;
}

.nnok-proof-item strong {
  display: block;
  color: var(--nnok-text);
  font-size: 20px;
  font-weight: 900;
}

.nnok-proof-item span {
  display: block;
  margin-top: 9px;
  color: var(--nnok-muted);
  font-size: 14px;
  line-height: 1.6;
}

.nnok-section {
  padding: 78px 0;
}

.nnok-section-alt {
  background: rgba(255, 255, 255, .025);
  border-top: 1px solid var(--nnok-line);
  border-bottom: 1px solid var(--nnok-line);
}

.nnok-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.nnok-section-head h2,
.nnok-article-title h1 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.nnok-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--nnok-muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.nnok-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.nnok-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.nnok-feature-card-body {
  padding: 24px;
}

.nnok-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.nnok-feature-card p {
  margin: 14px 0 0;
  color: var(--nnok-muted);
  font-size: 15px;
  line-height: 1.75;
}

.nnok-feature-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--nnok-orange-2);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.nnok-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.nnok-panel {
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  background: var(--nnok-panel);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
}

.nnok-panel-pad {
  padding: 34px;
}

.nnok-panel h2,
.nnok-panel h3 {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.nnok-panel h2 {
  font-size: 42px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.nnok-panel h3 {
  font-size: 22px;
  line-height: 1.25;
}

.nnok-panel p {
  margin: 16px 0 0;
  color: var(--nnok-muted);
  font-size: 16px;
  line-height: 1.82;
}

.nnok-check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.nnok-check-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  color: rgba(248, 250, 252, .86);
  font-size: 15px;
  line-height: 1.7;
}

.nnok-check-list li::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--nnok-orange-2), var(--nnok-orange));
  box-shadow: 0 10px 20px rgba(255, 138, 0, .22);
}

.nnok-rhythm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nnok-rhythm-card {
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, .045);
}

.nnok-rhythm-card b {
  color: var(--nnok-orange-2);
  font-size: 30px;
  font-weight: 900;
}

.nnok-rhythm-card span {
  display: block;
  margin-top: 10px;
  color: var(--nnok-muted);
  font-size: 14px;
  line-height: 1.65;
}

.nnok-update-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.nnok-article-list {
  display: grid;
  gap: 16px;
}

.nnok-list-item {
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, .04);
}

.nnok-list-item h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.nnok-list-item h2 a {
  color: inherit;
  text-decoration: none;
}

.nnok-list-item h2 a:hover {
  color: var(--nnok-orange-2);
}

.nnok-list-item p {
  margin: 14px 0 0;
  color: var(--nnok-muted);
  font-size: 15px;
  line-height: 1.75;
}

.nnok-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
  color: var(--nnok-dim);
  font-size: 13px;
  font-weight: 800;
}

.nnok-sidebar {
  display: grid;
  gap: 18px;
}

.nnok-sidebar-card {
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255, 138, 0, .12), rgba(255, 255, 255, .035));
}

.nnok-sidebar-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.nnok-sidebar-card p,
.nnok-sidebar-card li {
  color: var(--nnok-muted);
  font-size: 14px;
  line-height: 1.7;
}

.nnok-sidebar-card p {
  margin: 12px 0 0;
}

.nnok-sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.nnok-sidebar-card a {
  color: var(--nnok-orange-2);
  font-weight: 900;
  text-decoration: none;
}

.nnok-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.nnok-pagination li,
.nnok-pagination a,
.nnok-pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--nnok-line);
  color: var(--nnok-text);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.nnok-pagination a:hover,
.nnok-pagination .thisclass {
  color: #221100;
  background: linear-gradient(180deg, var(--nnok-orange-2), var(--nnok-orange));
}

.nnok-breadcrumb {
  padding: 24px 0 0;
}

.nnok-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--nnok-muted);
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.nnok-breadcrumb a {
  color: var(--nnok-orange-2);
  text-decoration: none;
}

.nnok-article-shell {
  padding: 34px 0 78px;
}

.nnok-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.nnok-article-main {
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.nnok-article-title {
  padding: 34px;
  background:
    linear-gradient(128deg, rgba(255, 138, 0, .2), rgba(255, 255, 255, .035)),
    #0b1119;
  border-bottom: 1px solid var(--nnok-line);
}

.nnok-article-title p {
  margin: 16px 0 0;
  color: var(--nnok-muted);
  font-size: 16px;
  line-height: 1.75;
}

.nnok-article-content {
  padding: 34px;
  color: rgba(248, 250, 252, .88);
  font-size: 17px;
  line-height: 1.9;
}

.nnok-article-content h2,
.nnok-article-content h3 {
  color: #fff;
  line-height: 1.25;
}

.nnok-article-content a {
  color: var(--nnok-orange-2);
}

.nnok-article-content img {
  border-radius: 8px;
  margin: 22px 0;
}

.nnok-article-tools,
.nnok-prenext {
  border-top: 1px solid var(--nnok-line);
  padding: 24px 34px;
}

.nnok-article-tools ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nnok-article-tools a,
.nnok-prenext a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--nnok-line);
  padding: 0 14px;
  color: var(--nnok-text);
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.nnok-prenext {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nnok-static-hero {
  padding: 82px 0 46px;
  border-bottom: 1px solid var(--nnok-line);
  background:
    linear-gradient(112deg, rgba(6, 9, 14, .96), rgba(24, 14, 7, .94)),
    url("/assets/nnok-hero.jpg") right center / min(56vw, 760px) auto no-repeat;
}

.nnok-static-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.nnok-static-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--nnok-muted);
  font-size: 18px;
  line-height: 1.8;
}

.nnok-static-content {
  padding: 70px 0;
}

.nnok-static-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.nnok-copy-block {
  display: grid;
  gap: 22px;
}

.nnok-copy-block section {
  border: 1px solid var(--nnok-line);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, .04);
}

.nnok-copy-block h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.nnok-copy-block p,
.nnok-copy-block li {
  color: var(--nnok-muted);
  font-size: 16px;
  line-height: 1.85;
}

.nnok-copy-block p {
  margin: 16px 0 0;
}

.nnok-footer {
  border-top: 1px solid var(--nnok-line);
  background: #05070b;
}

.nnok-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}

.nnok-footer p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--nnok-dim);
  font-size: 13px;
  line-height: 1.65;
}

.nnok-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.nnok-footer-links a:hover {
  color: var(--nnok-orange-2);
}

@media (max-width: 1080px) {
  .nnok-header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nnok-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nnok-nav a {
    padding: 10px 0 14px;
  }

  .nnok-actions {
    width: 100%;
  }

  .nnok-hero-inner,
  .nnok-split,
  .nnok-update-layout,
  .nnok-article-grid,
  .nnok-static-grid {
    grid-template-columns: 1fr;
  }

  .nnok-hero-inner {
    min-height: auto;
  }

  .nnok-hero h1 {
    font-size: 58px;
  }

  .nnok-section-head h2,
  .nnok-article-title h1 {
    font-size: 38px;
  }

  .nnok-panel h2 {
    font-size: 36px;
  }

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

  .nnok-hero-media {
    min-height: auto;
  }

  .nnok-feature-grid,
  .nnok-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nnok-container {
    width: calc(100vw - 28px);
    max-width: none;
  }

  .nnok-hero-copy,
  .nnok-hero h1,
  .nnok-hero-desc {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .nnok-actions,
  .nnok-hero-actions,
  .nnok-section-head,
  .nnok-footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .nnok-button,
  .nnok-actions .nnok-button {
    width: 100%;
  }

  .nnok-nav {
    flex-wrap: wrap;
    gap: 14px 20px;
    overflow-x: visible;
  }

  .nnok-hero-inner {
    padding: 54px 0 44px;
  }

  .nnok-hero h1 {
    font-size: 24px;
    line-height: 1.22;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .nnok-section-head h2,
  .nnok-article-title h1,
  .nnok-panel h2,
  .nnok-static-hero h1 {
    font-size: 32px;
  }

  .nnok-hero-desc {
    font-size: 16px;
  }

  .nnok-hero-image,
  .nnok-hero-image img {
    min-height: 330px;
  }

  .nnok-floating-card {
    position: static;
    margin-top: 14px;
  }

  .nnok-proof-grid,
  .nnok-feature-grid,
  .nnok-rhythm,
  .nnok-prenext {
    grid-template-columns: 1fr;
  }

  .nnok-section {
    padding: 54px 0;
  }

  .nnok-panel-pad,
  .nnok-article-title,
  .nnok-article-content,
  .nnok-article-tools,
  .nnok-prenext,
  .nnok-copy-block section {
    padding: 24px;
  }

  .nnok-static-hero {
    padding: 58px 0 38px;
    background:
      linear-gradient(112deg, rgba(6, 9, 14, .96), rgba(24, 14, 7, .94));
  }
}
