/*
Theme Name: NXTDeal Realty
Theme URI: https://nxtdealrealty.com
Author: NXTDeal Realty
Author URI: https://nxtdealrealty.com
Description: Custom real estate theme for NXTDeal Realty — black, white, and red luxury design with full pages for Home, About, Services, Listings, Commercial, and Contact.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nxtdeal-realty
Tags: real-estate, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --red:     #CC1111;
  --black:   #0d0d0d;
  --gray-bg: #F5F5F5;
  --white:   #ffffff;
  --text:    #333333;
  --text-light: #666666;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── RESET / BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.nxt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .nxt-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nxt-container { padding: 0 2rem; } }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.red-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.red-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--red);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-out);
  border: 2px solid var(--red);
}
.btn-red:hover { background: #aa0e0e; border-color: #aa0e0e; color: var(--white); }
.btn-red:active { transform: scale(0.97); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

/* ─── NAVBAR ────────────────────────────────────────────────── */
#nxt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  transition: box-shadow 0.3s var(--ease-out);
}
#nxt-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.nxt-topbar {
  display: none;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 2.5rem;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .nxt-topbar { display: flex; } }

.nxt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
}
.nxt-logo img { height: 3rem; width: auto; object-fit: contain; }

.nxt-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .nxt-nav-links { display: flex; } }

.nxt-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nxt-nav-links a:hover,
.nxt-nav-links a.active { color: var(--white); border-bottom-color: var(--red); }

.nxt-nav-cta { margin-left: 1rem; }

.nxt-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 768px) { .nxt-hamburger { display: none; } }
.nxt-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nxt-mobile-menu {
  display: none;
  flex-direction: column;
  background: #1a1a1a;
  padding: 1rem 2.5rem 1.5rem;
  gap: 0.75rem;
}
.nxt-mobile-menu.open { display: flex; }
.nxt-mobile-menu a {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
#nxt-footer { background: var(--black); color: var(--white); }
.nxt-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) { .nxt-footer-grid { grid-template-columns: repeat(3, 1fr); } }

.nxt-footer-logo { height: 3rem; width: auto; object-fit: contain; margin-bottom: 1.25rem; }
.nxt-footer-desc { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }

.nxt-footer-social { display: flex; gap: 0.75rem; }
.nxt-footer-social a {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s;
}
.nxt-footer-social a:hover { border-color: var(--red); color: var(--red); }

.nxt-footer-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.nxt-footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.nxt-footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.nxt-footer-links a:hover { color: var(--red); }

.nxt-footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.nxt-footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.nxt-footer-contact-icon {
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0; margin-top: 2px;
  font-size: 0.8rem;
}
.nxt-footer-contact-text { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.7; }
.nxt-footer-contact-text a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.nxt-footer-contact-text a:hover { color: var(--red); }

.nxt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .nxt-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ─── PAGE HERO ─────────────────────────────────────────────── */
.nxt-page-hero {
  padding: 10rem 0 5rem;
  background: var(--black);
  position: relative;
}
.nxt-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ─── HOME HERO ─────────────────────────────────────────────── */
.nxt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  background-size: cover;
  background-position: center top;
}
.nxt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 100%);
}
.nxt-hero-content { position: relative; z-index: 1; max-width: 48rem; }
.nxt-hero-label { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.nxt-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.nxt-hero-title span { color: var(--red); }
.nxt-hero-desc { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; max-width: 36rem; margin-bottom: 2.5rem; }
.nxt-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── STATS BAR ─────────────────────────────────────────────── */
.nxt-stats { background: var(--red); }
.nxt-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  text-align: center;
  color: var(--white);
}
@media (min-width: 768px) { .nxt-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.nxt-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.nxt-stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

/* ─── SERVICES SECTION ──────────────────────────────────────── */
.nxt-services { padding: 6rem 0; background: var(--white); }
.nxt-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 640px)  { .nxt-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nxt-services-grid { grid-template-columns: repeat(4, 1fr); } }

.nxt-service-card {
  padding: 2rem;
  background: #FAFAFA;
  border: 1px solid #f0f0f0;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nxt-service-card:hover { border-color: var(--red); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.nxt-service-icon {
  width: 3rem; height: 3rem;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.nxt-service-card:hover .nxt-service-icon { background: var(--red); }
.nxt-service-icon svg { width: 1.4rem; height: 1.4rem; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nxt-service-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; }
.nxt-service-desc { color: var(--text-light); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.nxt-service-link { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.nxt-service-card:hover .nxt-service-link { gap: 0.6rem; }

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.nxt-about-dark {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
  overflow: hidden;
}
.nxt-about-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.1;
}
.nxt-about-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .nxt-about-grid { grid-template-columns: 1fr 1fr; } }
.nxt-about-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 1.5rem; line-height: 1.2; }
.nxt-about-title span { color: var(--red); }
.nxt-about-desc { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.25rem; }
.nxt-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nxt-about-feature { padding: 1.25rem; border: 1px solid rgba(255,255,255,0.1); transition: border-color 0.3s; }
.nxt-about-feature:hover { border-color: rgba(204,17,17,0.5); }
.nxt-about-feature-bar { width: 0.25rem; height: 1.5rem; background: var(--red); margin-bottom: 0.75rem; }
.nxt-about-feature-title { color: var(--white); font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem; }
.nxt-about-feature-desc { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.6; }

/* ─── TEAM SECTION ──────────────────────────────────────────── */
.nxt-team { padding: 6rem 0; background: var(--gray-bg); }
.nxt-team-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.nxt-team-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px)  { .nxt-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nxt-team-grid { grid-template-columns: repeat(4, 1fr); } }

.nxt-team-card { background: var(--white); overflow: hidden; }
.nxt-team-photo { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.nxt-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease-out); }
.nxt-team-card:hover .nxt-team-photo img { transform: scale(1.05); }
.nxt-team-info { padding: 1.25rem; border-bottom: 2px solid transparent; transition: border-color 0.3s; }
.nxt-team-card:hover .nxt-team-info { border-bottom-color: var(--red); }
.nxt-team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--black); }
.nxt-team-role { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-top: 0.25rem; }

/* ─── PM PORTAL ─────────────────────────────────────────────── */
.nxt-portal { padding: 5rem 0; background: var(--black); }
.nxt-portal-inner {
  display: flex; flex-direction: column; gap: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 3.5rem;
}
@media (min-width: 768px) { .nxt-portal-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.nxt-portal-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.nxt-portal-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; max-width: 36rem; line-height: 1.7; }
.nxt-portal-btns { display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 480px) { .nxt-portal-btns { flex-direction: row; } }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.nxt-cta {
  padding: 6rem 0;
  background-size: cover; background-position: center;
  position: relative; text-align: center;
}
.nxt-cta-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0.82); }
.nxt-cta-content { position: relative; z-index: 1; }
.nxt-cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.nxt-cta-title span { color: var(--red); }
.nxt-cta-desc { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 36rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.nxt-cta-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.nxt-cta-contacts a { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.nxt-cta-contacts a:hover { color: var(--red); }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.nxt-about-page { padding: 6rem 0; background: var(--white); }
.nxt-about-two-col { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .nxt-about-two-col { grid-template-columns: 1fr 1fr; } }
.nxt-mission-box { padding: 2rem; border-left: 4px solid var(--red); background: var(--gray-bg); margin-bottom: 1.5rem; }
.nxt-mission-box h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 0.75rem; }
.nxt-mission-box p { color: var(--text-light); font-size: 0.88rem; line-height: 1.8; }
.nxt-mission-box.dark-border { border-left-color: var(--black); }

.nxt-team-full { padding: 6rem 0; background: var(--gray-bg); }
.nxt-team-bio { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .nxt-team-bio { grid-template-columns: 1fr 2fr; } }
.nxt-team-bio-photo { position: relative; }
.nxt-team-bio-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.nxt-team-bio-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.nxt-team-bio-name { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--black); margin-bottom: 0.25rem; }
.nxt-team-bio-role { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.35rem; }
.nxt-team-bio-license { font-size: 0.72rem; color: #aaa; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.nxt-team-bio-text { color: var(--text-light); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.nxt-team-bio-divider { border: none; border-top: 1px solid #e5e5e5; margin: 3rem 0; }

/* ─── SERVICES PAGE ─────────────────────────────────────────── */
.nxt-services-page { padding: 6rem 0; background: var(--white); }
.nxt-service-detail { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .nxt-service-detail { grid-template-columns: 1fr 1fr; } }
.nxt-service-detail-divider { border: none; border-top: 1px solid #f0f0f0; margin: 5rem 0; }
.nxt-service-features { padding: 2.5rem; background: var(--gray-bg); }
.nxt-service-features h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; }
.nxt-service-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.nxt-service-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: var(--text); }
.nxt-service-features li::before { content: ''; width: 1rem; height: 1rem; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 3px; }

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.nxt-contact-page { padding: 6rem 0; background: var(--white); }
.nxt-contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .nxt-contact-grid { grid-template-columns: 2fr 3fr; } }
.nxt-contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.nxt-contact-icon { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nxt-contact-icon.red { background: var(--red); }
.nxt-contact-icon.black { background: var(--black); }
.nxt-contact-icon svg { width: 1rem; height: 1rem; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nxt-contact-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #aaa; margin-bottom: 0.35rem; }
.nxt-contact-value { font-size: 0.88rem; color: var(--text); line-height: 1.7; }
.nxt-contact-value a { transition: color 0.2s; }
.nxt-contact-value a:hover { color: var(--red); }

.nxt-contact-form-wrap { padding: 3rem; background: var(--gray-bg); }
.nxt-contact-form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 2rem; }
.nxt-form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .nxt-form-row { grid-template-columns: 1fr 1fr; } }
.nxt-form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.nxt-form-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #888; }
.nxt-form-group input,
.nxt-form-group select,
.nxt-form-group textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.nxt-form-group input:focus,
.nxt-form-group select:focus,
.nxt-form-group textarea:focus { border-color: var(--red); }
.nxt-form-group textarea { resize: vertical; min-height: 140px; }

/* ─── LISTINGS PAGE ─────────────────────────────────────────── */
.nxt-listings-page { padding: 3rem 0 6rem; min-height: 60vh; }

/* ─── UTILITY ───────────────────────────────────────────────── */
.nxt-license-bar {
  padding: 1.25rem 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
@media (min-width: 768px) {
  .nxt-license-bar { flex-direction: row; justify-content: space-between; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(2rem); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
