:root {
  --bg: #050608;
  --bg-2: #080b10;
  --bg-3: #0b1018;

  --card: rgba(13, 17, 24, 0.82);
  --card-2: rgba(17, 23, 34, 0.72);
  --card-solid: #0d1118;

  --text: #f3f5f7;
  --text-soft: #d8dde5;
  --muted: #8f98a5;
  --muted-2: #65707d;

  --blue: #315fe8;
  --blue-2: #86a1ff;
  --blue-3: #1d3f9e;

  --line: rgba(255, 255, 255, 0.085);
  --line-2: rgba(255, 255, 255, 0.14);
  --blue-line: rgba(49, 95, 232, 0.28);

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.3);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-full: 999px;

  --container: 1120px;
  --header-h: 66px;

  --font-body:
    'Roboto', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title: 'Roboto Condensed', 'Roboto', ui-sans-serif, system-ui, sans-serif;
  --font-tech: 'Roboto Mono', 'Consolas', 'SFMono-Regular', monospace;
}

/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 10%, rgba(49, 95, 232, 0.09), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(134, 161, 255, 0.055), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 45%, transparent 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.035) 43%, transparent 70%),
    radial-gradient(circle at 50% 100%, rgba(49, 95, 232, 0.12), transparent 44%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

::selection {
  color: #fff;
  background: rgba(49, 95, 232, 0.4);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 82px 0;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.16;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 0.94rem;
}

/* HEADER */

.main-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  width: min(var(--container), calc(100% - 56px));
  height: var(--header-h);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(5, 6, 8, 0.82);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  transition:
    top 0.22s ease,
    height 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.main-header.is-scrolled {
  top: 9px;
  height: 60px;
  background: rgba(5, 6, 8, 0.92);
  border-color: rgba(49, 95, 232, 0.22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 92px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-full);
  color: rgba(243, 245, 247, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.main-nav .nav-button {
  padding-inline: 17px;
  color: #fff;
  background: linear-gradient(135deg, #2858dd, #6383f2);
  box-shadow:
    0 13px 32px rgba(49, 95, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.main-nav .nav-button:hover {
  background: linear-gradient(135deg, #3468f0, #86a1ff);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.menu-button i {
  font-size: 1.45rem;
}

/* BUTTONS */

.btn,
.quick-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn {
  min-height: 46px;
  padding: 0 19px;
  font-size: 0.84rem;
}

.btn i,
.quick-link i,
.text-link i {
  font-size: 1.08rem;
}

.btn:hover,
.quick-link:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #2858dd, #6383f2);
  box-shadow:
    0 14px 34px rgba(49, 95, 232, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #3468f0, #86a1ff);
  box-shadow:
    0 18px 44px rgba(49, 95, 232, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--secondary,
.quick-link {
  color: var(--text);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
}

.btn--secondary:hover,
.quick-link:hover {
  border-color: var(--blue-line);
  background: rgba(49, 95, 232, 0.09);
}

.quick-link {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.78rem;
}

.text-link {
  width: fit-content;
  color: var(--blue-2);
  font-size: 0.9rem;
}

.text-link:hover {
  color: #bdcaff;
}

/* NFC MODE / LOADER */

.nfc-only {
  display: none;
}

body.is-nfc .nfc-only {
  display: inline-flex;
}

body.is-nfc .status-pill {
  border-color: rgba(49, 95, 232, 0.42);
  background: rgba(49, 95, 232, 0.12);
  box-shadow: 0 0 34px rgba(49, 95, 232, 0.16);
}

body.is-nfc .status-pill span {
  font-size: 0;
}

body.is-nfc .status-pill span::after {
  content: 'Experiencia NFC detectada';
  font-family: var(--font-tech);
  font-size: 0.68rem;
}

.nfc-entry {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 34%, rgba(49, 95, 232, 0.19), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(134, 161, 255, 0.07), transparent 30%), #050608;
}

body.show-nfc-loader .nfc-entry {
  display: grid;
}

.nfc-entry__card {
  width: min(360px, 100%);
  padding: 30px 24px 26px;
  text-align: center;
  border: 1px solid rgba(49, 95, 232, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(5, 6, 8, 0.82);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(49, 95, 232, 0.13);
  backdrop-filter: blur(24px);
  animation: loaderIn 0.42s ease both;
}

.nfc-entry__logo {
  position: relative;
  width: 102px;
  height: 102px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(134, 161, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(49, 95, 232, 0.14), transparent 64%), rgba(255, 255, 255, 0.03);
}

.nfc-entry__logo::before,
.nfc-entry__logo::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(49, 95, 232, 0.25);
  animation: nfcPulse 1.5s ease-out infinite;
}

.nfc-entry__logo::after {
  animation-delay: 0.45s;
}

.nfc-entry__logo img {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nfc-entry p {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nfc-entry h1 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1;
}

.nfc-entry__progress {
  position: relative;
  height: 4px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
}

.nfc-entry__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2858dd, #86a1ff);
  animation: loaderBar 1.1s ease-in-out infinite;
}

/* HERO */

.hero {
  position: relative;
  min-height: auto;
  padding: 126px 0 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.74fr);
  gap: clamp(46px, 6vw, 78px);
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.status-pill {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 0 13px;
  border: 1px solid rgba(49, 95, 232, 0.25);
  border-radius: var(--radius-full);
  color: var(--text-soft);
  background: rgba(49, 95, 232, 0.075);
}

.status-pill i {
  color: var(--blue-2);
  font-size: 0.98rem;
}

.status-pill span {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.9rem, 4.75vw, 4.75rem);
  line-height: 0.98;
}

.hero__text {
  max-width: 570px;
  margin: 21px 0 0;
  color: rgba(216, 221, 229, 0.8);
  font-size: clamp(0.93rem, 1.05vw, 1.02rem);
  line-height: 1.76;
}

.hero__actions,
.hero__quick {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 28px;
}

.hero__quick {
  margin-top: 14px;
}

.hero__product {
  min-width: 0;
}

.product-showcase {
  position: relative;
  min-height: 470px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(49, 95, 232, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    rgba(9, 12, 17, 0.94);
  box-shadow: var(--shadow);
}

.product-showcase::before {
  content: '';
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 29px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 36%),
    linear-gradient(315deg, rgba(49, 95, 232, 0.08), transparent 48%);
}

.product-showcase::after {
  content: '';
  position: absolute;
  left: -25%;
  top: -35%;
  width: 58%;
  height: 150%;
  opacity: 0.48;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.058), transparent);
  transform: rotate(14deg);
  animation: shimmer 7s ease-in-out infinite;
}

.product-showcase__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-showcase__top span {
  color: rgba(243, 245, 247, 0.72);
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-showcase__top i {
  color: var(--blue-2);
  font-size: 1.02rem;
}

.ring-preview {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  margin: 36px auto 20px;
  display: grid;
  place-items: center;
}

.ring-preview__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(134, 161, 255, 0.2);
  box-shadow:
    inset 0 0 42px rgba(49, 95, 232, 0.08),
    0 0 42px rgba(49, 95, 232, 0.065);
}

.ring-preview__halo::before,
.ring-preview__halo::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(134, 161, 255, 0.18);
}

.ring-preview__halo::after {
  inset: 62px;
  border-style: solid;
}

.ring-preview__ring {
  position: relative;
  z-index: 3;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(134, 161, 255, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 95, 232, 0.13), transparent 68%), rgba(5, 6, 8, 0.8);
  box-shadow:
    0 0 44px rgba(49, 95, 232, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.ring-preview__ring img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.scan-card {
  position: relative;
  z-index: 2;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 6, 8, 0.5);
  backdrop-filter: blur(18px);
}

.scan-card__label {
  margin: 0 0 7px;
  color: var(--blue-2);
  font-family: var(--font-tech);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scan-card h2 {
  margin: 0;
  font-size: 1.32rem;
}

.scan-card ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.scan-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.scan-card i {
  color: var(--blue-2);
}

/* HERO NFC STRIP — PREMIUM, FIJO, SIN MOVER TODA LA BANDA */

.hero-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 62px;
  padding: 22px max(24px, calc((100vw - var(--container)) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.075);
  background:
    radial-gradient(circle at 50% 0%, rgba(49, 95, 232, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(13, 17, 24, 0.86), rgba(5, 6, 8, 0.92));
}

.hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #050608 0%, transparent 12%, transparent 88%, #050608 100%);
}

.hero-strip span {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius-full);
  color: rgba(243, 245, 247, 0.84);
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 95, 232, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.hero-strip span::before {
  content: '';
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 16px rgba(134, 161, 255, 0.72);
}

.hero-strip span:hover {
  border-color: rgba(49, 95, 232, 0.32);
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 95, 232, 0.22), transparent 46%),
    rgba(255, 255, 255, 0.06);
}

/* SPLIT SECTIONS */

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section-copy h2 {
  max-width: 560px;
  margin: 0;
}

.section-text {
  display: grid;
  gap: 14px;
}

.section-text p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.72;
}

/* CARDS BASE */

.product-card,
.step-card,
.plan-card,
.use-grid article,
.experience-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.016)),
    rgba(10, 14, 20, 0.82);
  box-shadow: var(--shadow-soft);
}

.product-card::before,
.step-card::before,
.plan-card::before,
.use-grid article::before,
.experience-list article::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 8%, rgba(49, 95, 232, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 38%);
}

/* PRODUCT */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.product-card {
  min-height: 190px;
  padding: 21px;
  border-radius: 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.product-card:hover,
.use-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 95, 232, 0.3);
}

.product-card i,
.use-grid i,
.experience-list i {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(49, 95, 232, 0.22);
  border-radius: 14px;
  color: var(--blue-2);
  background: rgba(49, 95, 232, 0.07);
  font-size: 1.22rem;
}

.product-card h3,
.product-card p,
.use-grid h3,
.use-grid p,
.experience-list h3,
.experience-list p {
  position: relative;
  z-index: 1;
}

.product-card h3,
.step-card h3,
.use-grid h3,
.experience-list h3 {
  margin-bottom: 9px;
}

.product-card p,
.step-card p,
.use-grid p,
.experience-list p,
.plan-card li,
.plan-card__header span,
.extras-list span,
.note-box li {
  margin-bottom: 0;
  font-size: 0.87rem;
  line-height: 1.62;
}

/* STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  min-height: 205px;
  padding: 21px;
  border-radius: 22px;
}

.step-card span,
.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card span {
  display: block;
  margin-bottom: 34px;
  color: rgba(134, 161, 255, 0.45);
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

/* EXPERIENCES */

.experiences-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.experiences-layout .section-copy {
  position: sticky;
  top: 112px;
}

.experiences-layout .text-link {
  margin-top: 18px;
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 21px;
  border-radius: 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.experience-list article:hover {
  transform: translateX(4px);
  border-color: rgba(49, 95, 232, 0.3);
  background:
    linear-gradient(180deg, rgba(49, 95, 232, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(10, 14, 20, 0.84);
}

.experience-list i {
  margin-bottom: 0;
}

/* PRICING */

.pricing-section {
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 10% -20% auto;
  height: 390px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(49, 95, 232, 0.08), transparent 62%);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 21px;
  border-radius: 24px;
}

.plan-card--featured {
  border-color: rgba(49, 95, 232, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(49, 95, 232, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 20, 0.92);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.46),
    0 0 60px rgba(49, 95, 232, 0.09);
  transform: translateY(-6px);
}

.plan-card__badge,
.plan-card__header,
.plan-card__price,
.plan-card ul,
.plan-card .btn {
  position: relative;
  z-index: 1;
}

.plan-card__badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  color: #fff;
  background: linear-gradient(135deg, #2858dd, #6383f2);
  font-family: var(--font-tech);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__header p {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-family: var(--font-tech);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__header h3 {
  margin: 0;
  font-size: clamp(1.38rem, 2vw, 1.85rem);
}

.plan-card__header span {
  display: block;
  min-height: 40px;
  margin-top: 8px;
  color: var(--muted);
}

.plan-card__price {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.plan-card__price:nth-of-type(2) {
  margin-top: 14px;
}

.plan-card__price small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-family: var(--font-tech);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__price strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.plan-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-2);
  font-weight: 900;
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

/* USE CASES */

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.use-grid article {
  min-height: 190px;
  padding: 21px;
  border-radius: 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

/* NOTE */

.note-section {
  padding-top: 32px;
}

.note-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 32px;
  border: 1px solid rgba(49, 95, 232, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 95, 232, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.note-box h2 {
  margin: 0;
}

.note-box ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.note-box li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.note-box li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--blue-2);
  font-size: 1.25rem;
}

.note-content {
  display: grid;
  gap: 18px;
}

.extra-note {
  margin: 4px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(49, 95, 232, 0.22);
  border-radius: 18px;
  color: rgba(216, 221, 229, 0.9);
  background:
    radial-gradient(circle at 0% 0%, rgba(49, 95, 232, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  line-height: 1.65;
}

.extra-note::before {
  content: 'Extra · ';
  color: var(--blue-2);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA */

.cta-section {
  padding-top: 42px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.7fr;
  gap: 52px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(49, 95, 232, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 95, 232, 0.15), transparent 34%),
    radial-gradient(circle at 18% 85%, rgba(134, 161, 255, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 17, 0.92);
  box-shadow: var(--shadow);
}

.cta-box::before {
  content: '';
  position: absolute;
  right: -130px;
  top: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(134, 161, 255, 0.15);
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  margin: 0;
}

.cta-box p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 0.94rem;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-actions .btn,
.cta-actions .quick-link {
  width: 100%;
}

/* FOOTER */

.main-footer {
  padding: 34px 0 42px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 88px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--blue-2);
}

/* TOAST */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  transform: translate(-50%, 120%);
  padding: 11px 15px;
  border: 1px solid rgba(49, 95, 232, 0.24);
  border-radius: var(--radius-full);
  color: #fff;
  background: rgba(5, 6, 8, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ANIMATIONS */

@keyframes loaderIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes nfcPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.76);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes loaderBar {
  0% {
    left: -48%;
  }

  50% {
    left: 38%;
  }

  100% {
    left: 104%;
  }
}

@keyframes shimmer {
  0%,
  46% {
    transform: translateX(-35%) rotate(14deg);
    opacity: 0;
  }

  56% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateX(270%) rotate(14deg);
    opacity: 0;
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  :root {
    --container: 1000px;
  }

  .hero__grid {
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 4.35vw, 4.25rem);
  }

  .product-showcase {
    min-height: 445px;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 112px;
  }

  .hero__grid,
  .split-section,
  .experiences-layout,
  .note-box,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 40px;
  }

  .hero__product {
    max-width: 520px;
  }

  .product-showcase {
    min-height: auto;
  }

  .product-grid,
  .pricing-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card--featured {
    transform: none;
  }

  .experiences-layout .section-copy {
    position: static;
  }

  .plan-card__header span {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .main-header {
    width: calc(100% - 24px);
    height: 60px;
    padding: 9px 10px 9px 16px;
  }

  .brand img {
    width: 82px;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 6, 8, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    transform: scaleY(0.92);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: center;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.75rem);
  }

  .hero__text {
    font-size: 0.93rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    font-size: clamp(2.34rem, 13vw, 3.5rem);
  }

  .hero__actions,
  .hero__quick {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .hero__quick .quick-link,
  .hero__quick button {
    width: 100%;
  }

  .hero-strip {
    margin-top: 46px;
    gap: 10px;
    padding-block: 14px;
  }

  .hero-strip span {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.74rem;
  }

  .ring-preview {
    width: 190px;
    height: 190px;
  }

  .ring-preview__ring {
    width: 96px;
    height: 96px;
  }

  .ring-preview__ring img {
    width: 50px;
    height: 50px;
  }

  .scan-card,
  .product-card,
  .step-card,
  .plan-card,
  .use-grid article,
  .experience-list article {
    padding: 18px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .experience-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .extras-compact__head {
    display: grid;
    gap: 8px;
  }

  .extras-compact {
    padding: 20px;
  }
}

@media (max-width: 620px) {
  .extras-compact__list {
    display: grid;
  }

  .extras-compact__list span {
    justify-content: space-between;
    border-radius: 16px;
    padding: 10px 13px;
  }

  .note-box,
  .cta-box {
    padding: 22px;
    border-radius: 24px;
  }

  h2 {
    font-size: clamp(1.68rem, 8vw, 2.38rem);
  }

  .nfc-entry__card {
    border-radius: 24px;
    padding: 28px 22px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* DEMO SKIN VARIABLES */

body.demo-mode--tattoo {
  --blue: #b36bff;
  --blue-2: #d8b7ff;
  --blue-line: rgba(179, 107, 255, 0.3);
}

body.demo-mode--barber {
  --blue: #4f9cff;
  --blue-2: #a9cfff;
  --blue-line: rgba(79, 156, 255, 0.3);
}

body.demo-mode--restaurant {
  --blue: #ff8a3d;
  --blue-2: #ffc08f;
  --blue-line: rgba(255, 138, 61, 0.3);
}

body.demo-mode--realestate {
  --blue: #39c98d;
  --blue-2: #a8f0cf;
  --blue-line: rgba(57, 201, 141, 0.3);
}

body.demo-mode--clinic {
  --blue: #71d9ff;
  --blue-2: #b8efff;
  --blue-line: rgba(113, 217, 255, 0.3);
}

/* Apply demo colors */

body.demo-mode .status-pill,
body.demo-mode .product-card i,
body.demo-mode .use-grid i,
body.demo-mode .experience-list i,
body.demo-mode .ring-preview__ring,
body.demo-mode .nfc-entry__logo {
  border-color: var(--blue-line);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

body.demo-mode .status-pill i,
body.demo-mode .status-pill span,
body.demo-mode .eyebrow,
body.demo-mode .scan-card__label,
body.demo-mode .product-showcase__top i,
body.demo-mode .product-showcase__top span,
body.demo-mode .scan-card i,
body.demo-mode .product-card i,
body.demo-mode .use-grid i,
body.demo-mode .experience-list i,
body.demo-mode .text-link,
body.demo-mode .plan-card__header p,
body.demo-mode .plan-card__price small,
body.demo-mode .plan-card li::before {
  color: var(--blue-2);
}

body.demo-mode .btn--primary,
body.demo-mode .main-nav .nav-button,
body.demo-mode .plan-card__badge {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

body.demo-mode .hero-strip span::before,
body.demo-mode .note-box li::before {
  background: var(--blue-2);
  color: var(--blue-2);
  box-shadow: 0 0 16px color-mix(in srgb, var(--blue-2) 70%, transparent);
}

body.demo-mode .product-showcase {
  background:
    radial-gradient(
      circle at 50% 28%,
      color-mix(in srgb, var(--blue) 12%, transparent),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    rgba(9, 12, 17, 0.94);
}

body.demo-mode .ring-preview__halo {
  border-color: color-mix(in srgb, var(--blue-2) 25%, transparent);
  box-shadow:
    inset 0 0 42px color-mix(in srgb, var(--blue) 10%, transparent),
    0 0 42px color-mix(in srgb, var(--blue) 8%, transparent);
}

/* SKIN PANEL */

.skin-panel {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: grid;
  place-items: end center;
  padding: 20px;
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.skin-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.skin-panel__box {
  width: min(540px, 100%);
  padding: 20px;
  border: 1px solid rgba(49, 95, 232, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 95, 232, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(9, 12, 17, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  transform: translateY(14px);
  transition: transform 0.22s ease;
}

.skin-panel.is-open .skin-panel__box {
  transform: translateY(0);
}

.skin-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.skin-panel__head p {
  margin: 0 0 8px;
  color: var(--blue-2);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skin-panel__head h2 {
  margin: 0;
  font-size: 1.7rem;
}

.skin-panel__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.skin-panel__close i {
  font-size: 1.35rem;
}

.skin-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.skin-panel__grid button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.skin-panel__grid button:hover {
  transform: translateY(-1px);
  border-color: rgba(49, 95, 232, 0.32);
  background: rgba(49, 95, 232, 0.12);
}

.skin-panel__grid i {
  color: var(--blue-2);
  font-size: 1.15rem;
}

.skin-panel__hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 520px) {
  .skin-panel__grid {
    grid-template-columns: 1fr;
  }
}

.brand {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand:focus-visible {
  outline: 2px solid rgba(134, 161, 255, 0.7);
  outline-offset: 4px;
  border-radius: 10px;
}
