html.preload-nfc body {
  overflow: hidden;
}

html.preload-nfc main,
html.preload-nfc header,
html.preload-nfc footer {
  opacity: 0;
}

html.preload-nfc .nfc-loader {
  display: grid !important;
}

:root {
  --bg: #05070a;
  --bg-soft: #0a0c10;
  --panel: #11151b;
  --panel-2: #151b23;

  --text: #d9d9d9;
  --text-bright: #f4f6f8;
  --muted: #8e949c;
  --muted-2: #5e6672;

  --line: rgba(255, 255, 255, 0.06);

  --accent: #6ab8c7;
  --accent-soft: #4da2b3;
  --accent-deep: #245b66;

  --radius: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 7%;
  background: rgba(5, 7, 10, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 65px;
  width: auto;
  display: block;
}

.brand-logo,
.premium-card-logo,
.footer-logo,
.loader-logo,
.nfc-symbol,
.material-symbol,
.about-logo,
.cta-symbol,
.avatar img {
  user-select: none;
  -webkit-user-drag: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.nav-menu a:hover {
  color: var(--text-bright);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 30px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 44px;
  align-items: center;
  padding: 120px 7% 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(106, 184, 199, 0.14), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(106, 184, 199, 0.06), transparent 26%),
    linear-gradient(180deg, #05070a, #090c10 55%, #05070a);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
  background: radial-gradient(
    circle 320px at var(--x, 50%) var(--y, 50%),
    rgba(106, 184, 199, 0.14),
    transparent 60%
  );
  transition: background 0.12s linear;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy > * {
  opacity: 1;
  transform: translateY(0);
  animation: heroReveal 0.9s ease forwards;
}

.hero-copy .eyebrow {
  animation-delay: 0.1s;
}

.hero-copy h1 {
  animation-delay: 0.22s;
}

.hero-copy p {
  animation-delay: 0.36s;
}

.hero-actions {
  animation: heroReveal 0.9s ease 0.5s forwards;
  opacity: 1;
}

.hero-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: heroVisualIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.28s forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 800;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 600;
}

.hero-copy p,
.product-layout p,
.cta p {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #05070a;
  box-shadow: 0 14px 34px rgba(106, 184, 199, 0.18);
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.nfc-only {
  display: none;
}

body.is-nfc .nfc-only {
  display: grid;
}

.save-contact-fab {
  position: absolute;
  top: 118px;
  right: 7%;
  z-index: 12;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #05070a;
  background: linear-gradient(180deg, #89d3e1 0%, #6ab8c7 55%, #4da2b3 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.28),
    inset 0 -4px 8px rgba(0, 0, 0, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(106, 184, 199, 0.16);
  font-size: 29px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
  cursor: pointer;
}

.save-contact-fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.34),
    inset 0 -4px 10px rgba(0, 0, 0, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(106, 184, 199, 0.22);
}

.save-contact-fab:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.22),
    inset 0 -2px 3px rgba(255, 255, 255, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.22);
}

.contact-btn {
  display: none !important;
}

.premium-card {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  height: 238px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 85%, rgba(106, 184, 199, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #151b23, #07090d);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --rotate: -5deg;
  transform: perspective(1200px) rotate(var(--rotate));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.18),
    transparent 28%,
    transparent 72%,
    rgba(255, 255, 255, 0.05)
  );
  opacity: 0.5;
  pointer-events: none;
}

.premium-card::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(106, 184, 199, 0.13);
  filter: blur(14px);
}

.premium-card-logo {
  position: relative;
  z-index: 2;
  width: 170px;
  height: auto;
  display: block;
}

.nfc-waves {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
}

.nfc-waves span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(106, 184, 199, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.nfc-waves span:nth-child(2) {
  inset: 13px;
  border-color: rgba(106, 184, 199, 0.38);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.nfc-waves span:nth-child(3) {
  inset: 26px;
  border: 0;
  background: var(--accent);
}

.card-footer {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217, 217, 217, 0.55);
}

.profile-preview {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  width: 285px;
  padding: 18px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)), #0f141d;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.phone-bar {
  width: 70px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg), var(--panel-2));
  color: #05070a;
  font-family: Georgia, serif;
  font-size: 22px;
}

.avatar img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.profile-preview h3,
.profile-preview p {
  text-align: center;
}

.profile-preview h3 {
  font-size: 18px;
  font-weight: 600;
}

.profile-preview p {
  margin: 6px auto 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.profile-preview a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 16px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.profile-preview a:hover {
  border-color: rgba(106, 184, 199, 0.35);
  background: rgba(106, 184, 199, 0.08);
}

.statement {
  padding: 90px 7%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(106, 184, 199, 0.08), transparent 28%), var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  margin-bottom: 5px;
}

.statement h2 {
  font-size: clamp(38px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 600;
}

.section {
  padding: 90px 7%;
  background: var(--bg);
}

.section:nth-of-type(even) {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 36px;
}

.section-heading h2,
.product-layout h2,
.cta h2 {
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.experience-grid,
.pricing,
.uses-grid {
  display: grid;
  gap: 16px;
}

.experience-grid,
.pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.uses-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-grid article,
.price-card,
.use-card,
.material-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border-radius: var(--radius);
}

.experience-grid article {
  min-height: 220px;
  padding: 24px;
}

.experience-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.experience-grid h3,
.price-card h3,
.use-card h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.experience-grid p,
.price-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(106, 184, 199, 0.09), transparent 28%), #05070a !important;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.material-card {
  padding: 28px;
}

.material-symbol {
  height: 145px;
  object-fit: contain;
  display: block;
  margin: 0 0 22px;
}

.about-logo {
  width: 145px;
  height: auto;
  display: block;
  margin: 0 0 24px;
}

.material-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.material-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.material-card i,
.use-card i {
  color: var(--accent);
}

.use-card {
  min-height: 155px;
  padding: 24px;
}

.use-card i {
  font-size: 28px;
}

.use-card:hover,
.experience-grid article:hover,
.price-card:hover,
.material-card:hover {
  border-color: rgba(106, 184, 199, 0.28);
  background: linear-gradient(180deg, rgba(106, 184, 199, 0.07), rgba(255, 255, 255, 0.018));
}

.price-card {
  position: relative;
  min-height: 285px;
  padding: 24px;
}

.price-card h3 {
  margin-top: 0;
}

.price {
  margin: 16px 0 8px;
  font-size: 34px;
  font-weight: 800;
  color: var(--text-bright) !important;
  letter-spacing: -0.05em;
}

.price-card a {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(106, 184, 199, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(106, 184, 199, 0.1), rgba(255, 255, 255, 0.025));
  border-color: rgba(106, 184, 199, 0.22);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8fd8e5, #6ab8c7);
  color: #05070a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta {
  margin: 20px 7% 70px;
  padding: 80px 28px;
  text-align: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(106, 184, 199, 0.16), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(106, 184, 199, 0.08), transparent 28%), #0f141d;
  border: 1px solid var(--line);
  color: var(--text);
}

.cta-symbol {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
}

.cta p {
  margin: 14px auto 28px;
}

footer {
  padding: 34px 7%;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
  background: #05070a;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  place-items: center;
  gap: 12px;
}

.footer-logo {
  width: 128px;
  height: auto;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NFC LOADER */

body.nfc-mode {
  overflow: hidden;
}

body.nfc-mode main,
body.nfc-mode header,
body.nfc-mode footer {
  filter: blur(22px);
  transform: scale(1.03);
  opacity: 0.45;
  transition:
    filter 1.2s ease,
    transform 1.2s ease,
    opacity 1.2s ease;
}

body.nfc-loaded main,
body.nfc-loaded header,
body.nfc-loaded footer {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.nfc-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: none;
  place-items: center;
  background: #040507;
}

.nfc-loader.active {
  display: grid;
}

.nfc-loader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.noise {
  position: absolute;
  inset: -200%;
  opacity: 0.035;
  background-image: radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 22px 22px;
  animation: noiseMove 16s linear infinite;
}

.ambient-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(106, 184, 199, 0.2), transparent 24%),
    radial-gradient(circle at 50% 68%, rgba(106, 184, 199, 0.07), transparent 20%);
  filter: blur(20px);
  animation: ambientPulse 5s ease-in-out infinite;
}

.nfc-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(106, 184, 199, 0.18), transparent 35%);
  opacity: 0;
  animation: flashIn 0.9s ease 0.15s;
}

.nfc-loader-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nfc-orb {
  position: relative;
  width: min(72vw, 270px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
}

.nfc-orb::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(106, 184, 199, 0.3),
    rgba(106, 184, 199, 0.04) 50%,
    transparent 72%
  );
  filter: blur(8px);
  animation: orbBreath 2.6s ease-in-out infinite;
}

.nfc-orb::after {
  content: '';
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 60px rgba(106, 184, 199, 0.08),
    0 0 90px rgba(106, 184, 199, 0.12);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(106, 184, 199, 0.22);
  opacity: 0;
  animation: premiumRing 2.8s cubic-bezier(0.2, 0.75, 0.2, 1) infinite;
}

.ring-1 {
  inset: 40%;
}

.ring-2 {
  inset: 31%;
  animation-delay: 0.35s;
  border-color: rgba(106, 184, 199, 0.16);
}

.ring-3 {
  inset: 22%;
  animation-delay: 0.7s;
}

.ring-4 {
  inset: 13%;
  animation-delay: 1.05s;
}

.nfc-core {
  position: relative;
  z-index: 4;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)), #0f141d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.44),
    0 0 50px rgba(106, 184, 199, 0.18);
  animation:
    coreEnter 0.9s ease both,
    coreFloat 3s ease-in-out 0.9s infinite;
}

.nfc-symbol {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.scan-line {
  position: absolute;
  z-index: 5;
  width: 72%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(106, 184, 199, 0.95),
    rgba(217, 217, 217, 0.5),
    transparent
  );
  box-shadow: 0 0 24px rgba(106, 184, 199, 0.55);
  opacity: 0;
  animation: scanMove 2.2s ease-in-out 0.45s infinite;
}

.nfc-loader-copy {
  text-align: center;
  animation: loaderCopyIn 0.9s ease 0.2s both;
}

.nfc-loader-copy p {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.loader-logo {
  width: min(260px, 72vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.loader-progress {
  width: min(220px, 62vw);
  height: 2px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  transform-origin: left;
  animation: progressLoad 2.8s ease both;
}

/* IL TUO */

#iltuo {
  background:
    radial-gradient(circle at 78% 18%, rgba(106, 184, 199, 0.1), transparent 28%),
    radial-gradient(circle at 15% 90%, rgba(106, 184, 199, 0.055), transparent 24%), var(--bg);
}

#iltuo .material-card {
  background: linear-gradient(180deg, rgba(106, 184, 199, 0.08), rgba(255, 255, 255, 0.018));
  border-color: rgba(106, 184, 199, 0.16);
}

#iltuo .hero-actions {
  margin-top: 28px;
}

#iltuo .material-card li i {
  font-size: 20px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 115px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 16px;
    align-items: end;
  }

  .premium-card,
  .profile-preview {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .premium-card {
    transform: rotate(0);
  }

  .profile-preview {
    transform: none;
  }

  .experience-grid,
  .pricing {
    grid-template-columns: 1fr 1fr;
  }

  .uses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .navbar {
    padding: 14px 5%;
  }

  .brand-logo {
    height: 42px;
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 20px;
    background: rgba(10, 12, 16, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    padding: 104px 5% 56px;
    gap: 34px;
  }

  .save-contact-fab {
    top: 84px;
    right: 5%;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  h1 {
    font-size: clamp(30px, 8vw, 48px);
    letter-spacing: -0.06em;
  }

  .hero-copy p,
  .product-layout p,
  .cta p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .premium-card {
    height: 220px;
  }

  .premium-card-logo {
    width: 145px;
  }

  .profile-preview {
    width: 100%;
  }

  .section,
  .statement {
    padding: 72px 5%;
  }

  .experience-grid,
  .pricing,
  .uses-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article,
  .price-card,
  .use-card {
    min-height: auto;
  }

  .experience-grid h3,
  .price-card h3,
  .use-card h3 {
    margin-top: 24px;
  }

  .price-card a {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .cta {
    margin: 10px 5% 56px;
    padding: 62px 20px;
  }

  .card-footer {
    font-size: 9px;
    gap: 12px;
  }

  .nfc-orb {
    width: min(76vw, 245px);
  }

  .nfc-core {
    width: 96px;
    height: 96px;
  }

  .nfc-symbol {
    width: 68px;
    height: 68px;
  }

  .footer-logo {
    width: 112px;
  }
}

/* ANIMATIONS */

@keyframes premiumRing {
  0% {
    transform: scale(0.45);
    opacity: 0;
  }

  20% {
    opacity: 0.75;
  }

  100% {
    transform: scale(1.95);
    opacity: 0;
  }
}

@keyframes scanMove {
  0%,
  100% {
    transform: translateY(-82px);
    opacity: 0;
  }

  20%,
  70% {
    opacity: 1;
  }

  50% {
    transform: translateY(82px);
  }
}

@keyframes orbBreath {
  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes coreEnter {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes progressLoad {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes loaderCopyIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes noiseMove {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(120px, 80px);
  }
}

@keyframes flashIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .hero-copy > *,
  .hero-actions,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-glow {
    display: none;
  }
}
