:root {
  --bg: #020712;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f3f6fb;
  --muted: #c7d4e5;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #00d7ff;
  --accent-2: #0a63ff;
  --deep: #051a2a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(0, 215, 255, 0.12) 0 1px, transparent 1px 18%),
    radial-gradient(circle at 16% 12%, rgba(0, 215, 255, 0.28), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(10, 99, 255, 0.24), transparent 30%),
    radial-gradient(circle at 50% 52%, rgba(0, 153, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #020712 0%, #051a2a 43%, #020712 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.noise,
.ambient-light {
  position: fixed;
  pointer-events: none;
}

.noise {
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(90deg, transparent 98%, white 100%),
    linear-gradient(180deg, transparent 98%, white 100%);
  background-size: 40px 40px;
  z-index: 0;
}

.ambient-light {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  z-index: 0;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.light-one {
  left: -120px;
  top: 160px;
  background: var(--accent);
}

.light-two {
  right: -150px;
  top: 820px;
  background: var(--accent-2);
  animation-delay: -4s;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 7vw 0;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px 18px;
  background: rgba(6, 16, 30, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.logo,
.nav-links,
.language-switch {
  display: flex;
  align-items: center;
}

.logo {
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: url("assets/norelis-n-logo.png") center / cover no-repeat;
  box-shadow: 0 0 26px rgba(0, 215, 255, 0.55);
}

.logo-text {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.nav-links {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.language-switch button {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.language-switch button.active {
  color: #ffffff;
}

.language-switch {
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.language-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
}

.section-shell,
.section {
  padding-left: 7vw;
  padding-right: 7vw;
}

.hero {
  min-height: calc(100vh - 92px);
  padding-top: 34px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-brand-lockup {
  width: min(760px, 100%);
  margin: 42px auto 0;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
}

.hero-brand-lockup::before {
  content: "";
  position: absolute;
  width: min(720px, 88vw);
  height: 2px;
  top: 72px;
  background: linear-gradient(90deg, transparent, rgba(0, 215, 255, 0.85), transparent);
  box-shadow: 0 0 34px rgba(0, 215, 255, 0.75);
  z-index: -1;
}

.brand-n {
  width: 126px;
  height: 126px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(0, 215, 255, 0.48);
  box-shadow:
    0 0 34px rgba(0, 215, 255, 0.62),
    0 0 92px rgba(10, 99, 255, 0.36);
}

.brand-name {
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(180deg, #effdff 0%, #56e7ff 24%, #00b7ff 48%, #0a63ff 78%, #032b74 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(210, 251, 255, 0.42);
  filter: drop-shadow(0 0 16px rgba(0, 215, 255, 0.40)) drop-shadow(0 0 42px rgba(10, 99, 255, 0.32));
}

.hero-brand-lockup p {
  margin: 12px 0 0;
  color: var(--accent);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 58px;
  align-items: center;
}

.hero-grid {
  padding-top: 56px;
}

.reverse {
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}

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

h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1;
  margin-bottom: 28px;
  max-width: 980px;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 24px;
}

h3 {
  color: #9fdfff;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.subtitle,
.section p {
  color: var(--muted);
  font-size: 20px;
  max-width: 780px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 215, 255, 0.45);
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 215, 255, 0.22);
}

.secondary,
.ghost {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(0, 215, 255, 0.62), transparent 30%, rgba(10, 99, 255, 0.50));
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.20), transparent 50%),
    linear-gradient(0deg, rgba(2, 7, 18, 0.78), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.ai-orbit {
  position: absolute;
  inset: 35% auto auto 42%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(0, 215, 255, 0.42);
  box-shadow: 0 0 46px rgba(0, 215, 255, 0.24);
  z-index: 2;
  animation: pulseRing 4s ease-in-out infinite;
}

.status-card,
.status-stack div {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 7, 18, 0.72);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
}

.score-card {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 18px 22px;
}

.status-card span,
.status-stack span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.status-card strong {
  display: block;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  margin-top: 8px;
}

.status-stack {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.status-stack div {
  padding: 14px 15px;
  animation: cardFloat 5s ease-in-out infinite;
}

.status-stack div:nth-child(2) {
  animation-delay: -1s;
}

.status-stack div:nth-child(3) {
  animation-delay: -2s;
}

.status-stack strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  margin-top: 5px;
}

.section {
  padding-top: 108px;
  padding-bottom: 108px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 22px 7vw auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 215, 255, 0.75), transparent 72%);
  box-shadow: 0 0 24px rgba(0, 215, 255, 0.35);
  pointer-events: none;
}

.intro-split,
.privacy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 215, 255, 0.075), rgba(0, 215, 255, 0.035));
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.signal-row,
.buttons {
  display: flex;
  flex-wrap: wrap;
}

.signal-row {
  gap: 10px;
  margin-top: 24px;
}

.signal-row span {
  border: 1px solid rgba(0, 215, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(0, 215, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.process,
.feature-grid,
.comparison-board,
.pricing,
.privacy-grid {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

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

.feature-grid,
.comparison-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.process article,
.feature-grid article,
.comparison-board article,
.glass-card,
.price-card,
.privacy-grid div,
.human-decision,
.benefit-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(0, 215, 255, 0.10), rgba(10, 99, 255, 0.055)), var(--panel);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.process article::before,
.feature-grid article::before,
.comparison-board article::before,
.glass-card::before,
.price-card::before,
.privacy-grid div::before,
.human-decision::before,
.benefit-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.82;
}

.process article:hover,
.feature-grid article:hover,
.comparison-board article:hover,
.glass-card:hover,
.price-card:hover,
.privacy-grid div:hover,
.benefit-panel:hover {
  border-color: rgba(0, 215, 255, 0.45);
  transform: translateY(-3px);
}

.process span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 99, 255, 0.20);
  color: #9fdfff;
  font-weight: 950;
  margin-bottom: 18px;
}

.feature-grid p,
.process p,
.comparison-board p,
.price-card span {
  font-size: 16px;
  color: var(--muted);
}

.privacy-grid div {
  min-height: 108px;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
}

.benefit-panel {
  min-height: 100%;
}

.benefit-panel h3 {
  margin-bottom: 18px;
}

.benefit-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-panel li {
  position: relative;
  padding-left: 24px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.45;
}

.benefit-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 215, 255, 0.70);
}

.comparison-head {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-weight: 950;
  text-align: center;
}

.comparison-head.norelis-side {
  border-color: rgba(0, 215, 255, 0.42);
  background: linear-gradient(135deg, rgba(0, 215, 255, 0.18), rgba(10, 99, 255, 0.12));
  color: #9fdfff;
}

.comparison-board article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  grid-column: 1 / -1;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.comparison-board article p,
.comparison-board article strong {
  display: flex;
  align-items: center;
  min-height: 78px;
  margin: 0;
  padding: 20px 22px;
}

.comparison-board article p {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid var(--line);
}

.comparison-board article strong {
  color: #ffffff;
  font-size: 19px;
  background: linear-gradient(135deg, rgba(0, 215, 255, 0.13), rgba(10, 99, 255, 0.075));
}

.price-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card h3 {
  margin-bottom: 24px;
}

.price {
  color: var(--accent);
  font-size: 30px;
  font-weight: 950;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.price-card .btn {
  margin-top: auto;
}

.featured {
  background: linear-gradient(180deg, rgba(0, 215, 255, 0.13), rgba(255, 255, 255, 0.055));
  border-color: rgba(0, 215, 255, 0.34);
}

.human-decision {
  margin-top: 28px;
  border-color: rgba(0, 215, 255, 0.36);
}

.human-decision strong {
  display: block;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.beta-form {
  max-width: 980px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(0, 215, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.field label {
  display: block;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 8px;
  text-align: left;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.24);
  color: #ffffff;
  outline: none;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.field select,
.field select option {
  background: #05070f !important;
  background-color: #05070f !important;
  color: #ffffff !important;
  color-scheme: dark;
}

footer {
  padding: 40px 7vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

footer span {
  color: var(--text);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, -30px, 0) scale(1.08);
  }
}

@keyframes pulseRing {
  0%, 100% {
    opacity: 0.48;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1160px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .language-switch {
    align-self: flex-end;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .reverse,
  .process,
  .feature-grid,
  .comparison-board,
  .pricing,
  .privacy-grid,
  .beta-form {
    grid-template-columns: 1fr;
  }

  .comparison-board article {
    grid-template-columns: 1fr;
  }

  .comparison-board article p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .status-stack {
    grid-template-columns: 1fr;
  }

  footer {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-shell,
  .section,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-name {
    font-size: 42px;
    letter-spacing: 0.07em;
  }

  .brand-n {
    width: 96px;
    height: 96px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .subtitle,
  .section p {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }
}
