﻿:root {
  --bg: #020712;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-2: rgba(255, 255, 255, 0.12);
  --text: #f3f6fb;
  --muted: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #00d7ff;
  --accent-2: #0a63ff;
  --warn: #00a7ff;
  --warm: #00a7ff;
  --danger: #f08a9b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 215, 255, 0.13), transparent 28%),
    radial-gradient(circle at 88% 3%, rgba(10, 99, 255, 0.14), transparent 30%),
    radial-gradient(circle at 55% 0%, rgba(0, 215, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #070914 0%, #071527 54%, #070914 100%);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: linear-gradient(90deg, transparent 98%, white 100%), linear-gradient(180deg, transparent 98%, white 100%);
  background-size: 40px 40px;
  z-index: 0;
}
.app {
  position: relative;
  z-index: 1;
  padding: 24px 6vw 56px;
}
.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  margin-bottom: 42px;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: url("assets/norelis-n-logo.png") center / cover no-repeat;
  box-shadow: 0 0 22px rgba(0, 215, 255, 0.55);
  position: relative;
}
.logo-mark::after {
  content: none;
}
.logo-wordmark {
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(180deg, #f2fdff 0%, #5be8ff 24%, #00b7ff 50%, #0a63ff 78%, #04296d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.35px rgba(210, 251, 255, 0.34);
  filter: drop-shadow(0 0 8px rgba(0, 215, 255, 0.38));
}
.nav-links { display: flex; flex-wrap: wrap; gap: 10px; color: #ffffff; font-size: 14px; }
.nav-links a { padding: 9px 12px; border-radius: 999px; }
.nav-links a:hover, .nav-links .active { color: var(--text); background: rgba(255,255,255,0.10); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: 34px; align-items: stretch; }
.app-brand-lockup {
  width: min(780px, 100%);
  margin: 16px auto 44px;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  position: relative;
}
.app-brand-lockup::before {
  content: "";
  position: absolute;
  width: min(720px, 88vw);
  height: 2px;
  top: 62px;
  background: linear-gradient(90deg, transparent, rgba(0, 215, 255, 0.88), transparent);
  box-shadow: 0 0 34px rgba(0, 215, 255, 0.72);
  z-index: -1;
}
.app-brand-n {
  width: 126px;
  height: 126px;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(0, 215, 255, 0.50);
  box-shadow:
    0 0 34px rgba(0, 215, 255, 0.62),
    0 0 92px rgba(10, 99, 255, 0.36);
}
.app-brand-name {
  font-size: clamp(54px, 9vw, 118px);
  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));
  text-shadow:
    0 0 18px rgba(0, 215, 255, 0.42),
    0 0 46px rgba(10, 99, 255, 0.30);
}
.app-brand-lockup p {
  margin: 12px 0 0;
  color: var(--accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}
.app-intro {
  max-width: 1080px;
  margin-bottom: 34px;
}
.app-intro h1 {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.registration-showcase {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}
.registration-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
  overflow: hidden;
}
.registration-card.reverse-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}
.registration-card.reverse-card img {
  order: 2;
}
.registration-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 215, 255, 0.18);
}
.registration-content {
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.registration-content h2 {
  font-size: clamp(30px, 4vw, 54px);
}
.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #ffffff;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  color: #ffffff;
  font-weight: 800;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 215, 255, 0.72);
}
.app-summary {
  display: block;
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 900; }
h1 { font-size: clamp(40px, 6vw, 78px); line-height: 0.98; margin: 16px 0 22px; }
h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.05; margin: 0 0 18px; }
h3 { margin: 0 0 8px; }
p, label, .muted { color: var(--muted); }
.subtitle { color: var(--muted); font-size: 19px; max-width: 760px; }
.buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 999px; font: inherit; font-weight: 900; border: 1px solid var(--line); cursor: pointer; }
.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #ffffff; box-shadow: 0 0 30px rgba(0,215,255,0.28); }
.ghost { background: rgba(255,255,255,0.065); color: var(--text); }
.panel, .card, .form-card, .step-card, .metric, .profile-tile, .flowbar { border: 1px solid var(--line); background: var(--surface); backdrop-filter: blur(20px); border-radius: 18px; box-shadow: 0 22px 70px rgba(0,0,0,0.24); }
.panel { padding: 28px; }
.form-card { padding: 28px; max-width: 900px; margin: 0 auto; }
.page-title { text-align: center; margin: 0 auto 28px; max-width: 940px; }
.page-title p { margin-left: auto; margin-right: auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.field { margin-bottom: 16px; }
label { display: block; margin-bottom: 8px; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
  font: inherit;
}
input::placeholder,
textarea::placeholder {
  color: rgba(232, 247, 255, 0.42);
}
select {
  background: #05070f !important;
  background-color: #05070f !important;
  color: #ffffff !important;
  color-scheme: dark;
  appearance: auto;
}

select option {
  background: #05070f !important;
  background-color: #05070f !important;
  color: #ffffff !important;
}

select option:checked,
select option:hover {
  background: #111827 !important;
  background-color: #111827 !important;
  color: #ffffff !important;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(0,215,255,0.55); box-shadow: 0 0 0 4px rgba(0,215,255,0.10); }
.check { display: flex; gap: 12px; align-items: flex-start; margin: 16px 0; }
.check input { width: auto; margin-top: 5px; }
.form-error {
  min-height: 20px;
  margin: 8px 0 0;
  color: #ffb4b4;
  font-size: 13px;
  font-weight: 800;
}
.flowbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 10px; margin: 0 0 28px; }
.flowbar span { min-height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--muted); font-size: 13px; font-weight: 800; background: rgba(255,255,255,0.065); text-align: center; }
.flowbar .done { color: #ffffff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.flowbar .active { color: var(--text); background: rgba(124,108,255,0.28); border: 1px solid rgba(124,108,255,0.45); }
.card { padding: 22px; }
.card strong, .metric strong { display: block; color: var(--accent); font-size: 30px; line-height: 1; margin-bottom: 8px; }
.metric { padding: 20px; min-height: 122px; }
.badge, .status { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 6px 11px; color: var(--muted); font-size: 13px; margin: 4px 6px 4px 0; }
.status.good { color: #bfeeff; border-color: rgba(0,215,255,0.38); background: rgba(0,215,255,0.10); }
.status.warn { color: var(--warn); border-color: rgba(0,215,255,0.35); background: rgba(0,215,255,0.08); }
.warning { border-color: rgba(255,107,122,0.35); background: rgba(255,107,122,0.08); }
.warning strong { color: var(--danger); }
.progress { height: 12px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; }
.video-box { aspect-ratio: 16 / 9; border: 1px dashed rgba(0,215,255,0.42); border-radius: 18px; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at center, rgba(0,215,255,0.12), transparent 38%), rgba(0,0,0,0.18); }
.play { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #ffffff; font-weight: 900; margin: 0 auto 14px; box-shadow: 0 0 34px rgba(0,215,255,0.24); }
.timeline { display: grid; gap: 14px; margin-top: 22px; }
.step-card { padding: 22px; display: grid; grid-template-columns: 48px 1fr; gap: 14px; }
.step-card h3 {
  margin-bottom: 10px;
  color: #9fdfff;
  text-shadow: 0 0 14px rgba(0, 215, 255, 0.24);
}
.step-card p { max-width: 1100px; font-size: 17px; line-height: 1.72; }
.step-no { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(10,99,255,0.16); color: #9fdfff; font-weight: 900; }
.profile-tile { padding: 18px; display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; margin-bottom: 12px; }
.avatar { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(0,215,255,0.25), rgba(124,108,255,0.28)); font-weight: 900; color: var(--text); }
.dashboard { display: grid; grid-template-columns: 240px 1fr; gap: 20px; align-items: start; }
.sidebar { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.065); }
.sidebar a { display: block; padding: 12px; border-radius: 12px; color: var(--muted); }
.sidebar a.active, .sidebar a:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.table-wrap { overflow-x: auto; }
.table { width: 100%; min-width: 680px; border-collapse: collapse; }
.table th, .table td { padding: 14px; text-align: left; border-bottom: 1px solid var(--line); color: var(--muted); }
.table th { color: var(--text); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.insight-list { display: grid; gap: 12px; }
.insight-list div { padding: 14px; border-radius: 14px; background: rgba(255,255,255,0.065); border: 1px solid var(--line); }
footer { color: var(--muted); text-align: center; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); }
@media (max-width: 980px) {
  .app { padding: 18px; }
  .hero-grid, .grid-2, .grid-3, .dashboard, .diagnosis-offer, .registration-card, .registration-card.reverse-card, .rating-list > div, .review-summary { grid-template-columns: 1fr; }
  .registration-card.reverse-card img { order: 0; }
  .registration-card img { min-height: 300px; }
  .nav { align-items: flex-start; flex-direction: column; }
  .app-brand-name { letter-spacing: 0.08em; }
  .app-brand-n { width: 98px; height: 98px; }
  .flowbar { grid-template-columns: 1fr 1fr; }
  .profile-tile { grid-template-columns: 48px 1fr; }
  .profile-tile .status { grid-column: 2; width: fit-content; }
}
@media (max-width: 560px) {
  h1 { font-size: 38px; }
  .app-brand-lockup { margin-top: 8px; }
  .app-brand-name { font-size: 42px; letter-spacing: 0.05em; }
  .app-brand-lockup p { font-size: 11px; letter-spacing: 0.14em; }
  .flowbar { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .panel, .form-card { padding: 20px; }
  .registration-card { padding: 12px; }
  .registration-card img { min-height: 220px; }
  .registration-content { padding: 14px 4px; }
}


.scenario-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.scenario-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  min-height: 190px;
}

.scenario-card strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #00121a;
  background: var(--accent);
  margin-bottom: 16px;
}

.active-scenario {
  background:
    linear-gradient(135deg, rgba(0, 215, 255, 0.12), rgba(10, 99, 255, 0.09)),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(0, 215, 255, 0.38);
  margin-bottom: 18px;
}

.scenario-library {
  margin: 24px 0;
}

.generation-note {
  margin-top: 24px;
  background:
    linear-gradient(135deg, rgba(0, 215, 255, 0.13), rgba(0, 215, 255, 0.08)),
    var(--surface);
  border-color: rgba(0, 215, 255, 0.32);
}

.complete-hero {
  padding: 28px;
  border: 1px solid rgba(0, 215, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 215, 255, 0.12), rgba(10, 99, 255, 0.09)),
    var(--surface);
}

.complete-metric {
  border-color: rgba(0, 215, 255, 0.28);
  background: rgba(10, 99, 255, 0.10);
}

.completion-list {
  display: grid;
  gap: 12px;
}

.completion-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.completion-list strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--text);
}

.job-match-list {
  display: grid;
  gap: 12px;
}

.diagnosis-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 20px;
  align-items: center;
  margin: 24px 0;
}

.price-card {
  border: 1px solid rgba(0, 215, 255, 0.30);
  border-radius: 18px;
  padding: 20px;
  background: rgba(0, 215, 255, 0.08);
}

.price-card strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-list {
  display: grid;
  gap: 12px;
}

.rating-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.rating-list span {
  color: var(--text);
  font-weight: 800;
}

.rating-scale {
  display: grid;
  grid-template-columns: repeat(5, 34px);
  gap: 6px;
}

.rating-scale b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
}

.rating-scale .selected {
  color: #00121a;
  background: var(--accent);
  border-color: rgba(0, 215, 255, 0.72);
  box-shadow: 0 0 18px rgba(0, 215, 255, 0.28);
}

.review-area {
  min-height: 190px;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.review-summary div {
  border: 1px solid rgba(0, 215, 255, 0.28);
  border-radius: 16px;
  padding: 18px;
  background: rgba(0, 215, 255, 0.08);
}

.review-summary strong {
  display: block;
  color: var(--accent);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.info-list,
.process-list {
  display: grid;
  gap: 12px;
}

.info-list > div,
.process-list > div,
.notice-box,
.feedback-rules > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.info-list strong,
.process-list strong,
.notice-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.feedback-rules {
  margin: 20px 0;
}

.process-list .done {
  border-color: rgba(0, 215, 255, 0.34);
  background: rgba(0, 215, 255, 0.08);
}

.process-list .active {
  border-color: rgba(10, 99, 255, 0.46);
  box-shadow: 0 0 24px rgba(10, 99, 255, 0.18);
}

.schedule-form {
  align-self: start;
}

.question-editor textarea {
  min-height: 150px;
}

.editable-question-list {
  display: grid;
  gap: 12px;
}

.editable-question-list > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.editable-question-list strong {
  display: block;
  color: var(--text);
  margin: 10px 0 4px;
}

.editable-question-list p {
  margin: 0 0 10px;
}

.editable-question-list a {
  display: inline-flex;
  margin-right: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.ai-form button {
  font: inherit;
}

.ai-result-panel {
  position: sticky;
  top: 18px;
}

.ai-output {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ai-output h3 {
  margin-top: 10px;
  color: var(--text);
}

.ai-output ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.ai-output li {
  margin-bottom: 7px;
}

.form-note {
  margin-top: 14px;
  font-size: 13px;
}


/* Norelis brand accents */
.warning,
.generation-note,
.complete-hero {
  background:
    linear-gradient(135deg, rgba(0, 215, 255, 0.13), rgba(0, 215, 255, 0.075)),
    rgba(255, 255, 255, 0.075);
}

.complete-hero h1,
.generation-note h2 {
  color: #fff7e6;
}

.complete-metric:nth-child(2) {
  border-color: rgba(0, 215, 255, 0.22);
}

.status.warn {
  color: #ffda8a;
  border-color: rgba(0, 215, 255, 0.42);
  background: rgba(0, 215, 255, 0.10);
}

.badge:hover,
.profile-tile:hover,
.scenario-card:hover {
  border-color: rgba(0, 215, 255, 0.28);
}










