/* mathlabspace — domain registrar landing UI */

:root {
  --nl-charcoal: #2c2c2c;
  --nl-charcoal-mid: #3a3a3a;
  --nl-charcoal-light: #4a4a4a;
  --nl-orange: #e85d04;
  --nl-orange-bright: #f77f00;
  --nl-blue: #0069aa;
  --nl-blue-hover: #005288;
  --nl-blue-link: #0069aa;
  --nl-text: #484848;
  --nl-text-light: #6b6b6b;
  --nl-bg: #ffffff;
  --nl-bg-soft: #f5f5f5;
  --nl-bg-hero: #ececec;
  --nl-border: #d8d8d8;
  --nl-white: #ffffff;
  --nl-max: 1200px;
  --nl-font: Arial, Helvetica, sans-serif;
  --nl-radius: 4px;
  --nl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nl-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nl-header-h: 56px;
  --nl-nav-h: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--nl-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--nl-text);
  background: var(--nl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nl-font);
  font-weight: 500;
}

body.nav-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent iOS Safari auto-zoom on focus (requires ≥16px). */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input:not([type]),
select,
textarea {
  font-size: 16px;
}

a {
  color: var(--nl-blue-link);
  text-decoration: none;
  transition: color 0.2s var(--nl-ease);
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--nl-max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--nl-orange);
  color: var(--nl-white);
  padding: 8px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* ========== TOP HEADER ========== */
.site-header {
  background: var(--nl-charcoal);
  color: var(--nl-white);
  position: relative;
  z-index: 40;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nl-header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--nl-white);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s var(--nl-ease);
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-text {
  font-family: "Ultra", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 1;
}

.logo-name {
  color: var(--nl-white);
}

.logo-lord {
  color: var(--nl-orange);
}

.utility-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

.utility-nav a {
  color: var(--nl-white);
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
  transition: opacity 0.2s var(--nl-ease), color 0.2s var(--nl-ease);
}

.utility-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.utility-nav .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--nl-white);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--nl-radius);
  transition: background 0.25s var(--nl-ease), border-color 0.25s var(--nl-ease);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.cart-btn--header {
  display: none;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.hamburger {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--nl-white);
  border-radius: 1px;
  transition: transform 0.3s var(--nl-ease), opacity 0.2s ease;
  transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========== SECONDARY NAVBAR ========== */
.site-navbar {
  background: var(--nl-charcoal-light);
  color: var(--nl-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 35;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nl-nav-h);
  gap: 16px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  min-height: var(--nl-nav-h);
}

.primary-nav .nav-item {
  position: relative;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nl-nav-h);
  padding: 0 16px;
  background: transparent;
  border: none;
  color: var(--nl-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.25s var(--nl-ease);
}

.nav-trigger:hover,
.nav-item.open .nav-trigger {
  background: rgba(255, 255, 255, 0.08);
}

.nav-trigger .chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--nl-white);
  margin-top: 2px;
  transition: transform 0.3s var(--nl-ease);
}

.nav-item.open .nav-trigger .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: var(--nl-white);
  color: var(--nl-text);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  z-index: 100;
  padding: 12px 0;
  border-radius: 0 0 var(--nl-radius) var(--nl-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 0.28s var(--nl-ease-out),
    transform 0.28s var(--nl-ease-out),
    visibility 0.28s;
}

.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--nl-text);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s var(--nl-ease), color 0.2s var(--nl-ease), padding-left 0.2s var(--nl-ease);
}

.dropdown a:hover {
  background: var(--nl-bg-soft);
  color: var(--nl-blue);
  text-decoration: none;
  padding-left: 24px;
}

.dropdown-heading {
  padding: 8px 20px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--nl-text-light);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn,
.cart-btn,
.signon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition:
    background 0.25s var(--nl-ease),
    color 0.25s var(--nl-ease),
    transform 0.25s var(--nl-ease),
    box-shadow 0.25s var(--nl-ease);
}

.search-btn {
  background: transparent;
  color: var(--nl-white);
  border-radius: var(--nl-radius);
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-btn {
  position: relative;
  background: transparent;
  color: var(--nl-white);
  border-radius: var(--nl-radius);
  text-decoration: none;
  padding: 0 12px;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.cart-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--nl-orange);
  color: var(--nl-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16px;
  text-align: center;
}

.signon-btn {
  background: var(--nl-white);
  color: var(--nl-charcoal);
  border-radius: var(--nl-radius);
  text-decoration: none;
}

.signon-btn:hover {
  background: #f0f0f0;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-btn svg,
.signon-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.search-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--nl-white);
  border-bottom: 0 solid var(--nl-border);
  opacity: 0;
  transition:
    max-height 0.4s var(--nl-ease-out),
    opacity 0.3s var(--nl-ease),
    border-bottom-width 0.3s ease,
    padding 0.3s var(--nl-ease);
  padding: 0;
}

.search-panel.open {
  max-height: 120px;
  opacity: 1;
  padding: 20px 0;
  border-bottom: 1px solid var(--nl-border);
}

.search-form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  width: 100%;
  align-items: stretch;
}

.search-form input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--nl-text);
  background: var(--nl-white);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s var(--nl-ease), box-shadow 0.2s var(--nl-ease);
}

.search-form input:focus {
  outline: none;
  border-color: var(--nl-blue);
  box-shadow: 0 0 0 3px rgba(0, 105, 170, 0.15);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--nl-ease);
}

.nav-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--nl-radius);
  font-size: 18px;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s var(--nl-ease),
    color 0.25s var(--nl-ease),
    border-color 0.25s var(--nl-ease),
    transform 0.25s var(--nl-ease),
    box-shadow 0.25s var(--nl-ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--nl-blue);
  color: var(--nl-white);
  box-shadow: 0 2px 0 rgba(0, 82, 136, 0.25);
}

.btn-primary:hover {
  background: var(--nl-blue-hover);
  color: var(--nl-white);
  box-shadow: 0 8px 20px rgba(0, 105, 170, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--nl-blue);
  border: 2px solid var(--nl-blue);
}

.btn-secondary:hover {
  background: rgba(0, 105, 170, 0.08);
  box-shadow: 0 6px 16px rgba(0, 105, 170, 0.12);
}

.btn-sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 15px;
}

/* ========== HERO ========== */
.hero {
  background: var(--nl-bg-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 45%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.035) 0 18%, transparent 19%),
    radial-gradient(circle at 55% 70%, rgba(0, 0, 0, 0.03) 0 22%, transparent 23%),
    radial-gradient(circle at 30% 80%, rgba(0, 0, 0, 0.025) 0 14%, transparent 15%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 32px;
  min-height: 520px;
  padding: 0;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
  max-width: none;
  width: 100%;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--nl-text);
  max-width: none;
  width: 100%;
}

.accent-bar {
  width: 48px;
  height: 5px;
  background: var(--nl-orange);
  margin: 0 0 18px;
  border-radius: 1px;
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: 20px;
  color: var(--nl-text-light);
  max-width: 42ch;
}

.domain-search-hero {
  display: flex;
  align-items: stretch;
  max-width: 560px;
  width: 100%;
  margin-bottom: 0;
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  overflow: hidden;
  transition: box-shadow 0.25s var(--nl-ease), border-color 0.25s var(--nl-ease);
}

.domain-search-hero:focus-within {
  border-color: var(--nl-blue);
  box-shadow: 0 0 0 3px rgba(0, 105, 170, 0.12);
}

.domain-search-hero input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0 16px;
  height: 52px;
  font-size: 16px;
  font-family: inherit;
  color: var(--nl-text);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.domain-search-hero input::placeholder {
  color: var(--nl-text-light);
  opacity: 1;
}

.domain-search-hero input:focus {
  outline: none;
}

.domain-search-hero .btn {
  flex: 0 0 auto;
  border-radius: 0;
  min-height: 52px;
  white-space: nowrap;
  transform: none;
}

.domain-search-hero .btn:hover {
  transform: none;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  height: 100%;
  padding: 24px 0;
  align-self: stretch;
}

.hero-vector {
  width: min(100%, 460px);
  height: auto;
  max-height: 520px;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(232, 93, 4, 0.22));
}

/* ========== SECTION SHARED ========== */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: var(--nl-text);
}

.section-header .accent-bar {
  margin: 0 auto 14px;
}

.section-header p {
  margin: 0;
  color: var(--nl-text-light);
  font-size: 18px;
}

/* ========== PRODUCTS GRID ========== */
.products-section {
  background: var(--nl-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--nl-blue);
  padding: 16px 8px;
  border-radius: 8px;
  transition:
    transform 0.3s var(--nl-ease),
    background 0.3s var(--nl-ease),
    color 0.3s var(--nl-ease);
}

.product-card:hover {
  transform: translateY(-6px);
  background: var(--nl-bg-soft);
  text-decoration: none;
  color: var(--nl-blue-hover);
}

.product-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.35s var(--nl-ease),
    box-shadow 0.35s var(--nl-ease),
    background 0.35s var(--nl-ease);
}

.product-card:hover .product-icon {
  transform: scale(1.08);
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(232, 93, 4, 0.15);
}

.product-icon svg {
  width: 64px;
  height: 64px;
}

.product-card span {
  font-size: 16px;
  font-weight: 400;
  transition: letter-spacing 0.25s var(--nl-ease);
}

.product-card span::after {
  content: " →";
  display: inline-block;
  transition: transform 0.25s var(--nl-ease);
}

.product-card:hover span::after {
  transform: translateX(3px);
}

/* ========== FEATURE PROMO ========== */
.promo-section {
  background: var(--nl-bg-soft);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.promo-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--nl-text);
  max-width: 18ch;
}

.promo-copy p {
  margin: 0 0 24px;
  color: var(--nl-text-light);
  max-width: 42ch;
}

.promo-visual {
  background: var(--nl-white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.3s var(--nl-ease), transform 0.3s var(--nl-ease);
}

.promo-visual:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.promo-visual-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.promo-visual-icon svg {
  width: 100%;
  height: 100%;
}

.promo-stat {
  font-size: 48px;
  font-weight: 700;
  color: var(--nl-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.promo-stat-label {
  font-size: 18px;
  color: var(--nl-text);
  margin-bottom: 20px;
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--nl-text);
}

.promo-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-orange);
  flex-shrink: 0;
}

/* ========== INSIGHTS ========== */
.insights-section {
  background: var(--nl-white);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--nl-ease),
    transform 0.3s var(--nl-ease),
    border-color 0.3s var(--nl-ease);
}

.insight-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: transparent;
  text-decoration: none;
}

.insight-image {
  height: 160px;
  background: linear-gradient(135deg, #3a3a3a, #0069aa);
  position: relative;
  display: grid;
  place-items: center;
  transition: filter 0.35s var(--nl-ease);
}

.insight-card:hover .insight-image {
  filter: brightness(1.06);
}

.insight-image svg {
  width: 100px;
  height: 70px;
}

.insight-image.alt1 {
  background: linear-gradient(135deg, var(--nl-orange), #f4a261);
}

.insight-image.alt2 {
  background: linear-gradient(135deg, #1b4332, #40916c);
}

.insight-image.alt3 {
  background: linear-gradient(135deg, #7f1d1d, #e85d04);
}

.insight-image.alt4 {
  background: linear-gradient(135deg, #1e3a5f, #0069aa);
}

.insight-meta {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--nl-text-light);
}

.insight-card .insight-meta {
  color: var(--nl-blue);
}

.insights-grid--page {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.insight-breadcrumb {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--nl-text-light);
}

.insight-breadcrumb a {
  color: var(--nl-blue);
}

.insight-article-lead {
  max-width: 62ch !important;
  font-size: 20px !important;
  margin-bottom: 12px !important;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
}

.insight-hero-visual {
  height: 200px;
  border-radius: var(--nl-radius);
  margin-bottom: 24px;
  display: grid;
  place-items: center;
}

.insight-section h2 {
  font-size: 22px;
}

.insight-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.related-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.related-list a:hover strong {
  color: var(--nl-blue);
  text-decoration: underline;
}

.related-list strong {
  font-size: 15px;
  line-height: 1.35;
  color: var(--nl-text);
}

.related-list span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--nl-text-light);
}

.insight-bullets {
  margin: 14px 0 0;
  padding-left: 1.15rem;
  color: var(--nl-text);
}

.insight-bullets li {
  margin: 0 0 8px;
  line-height: 1.5;
  color: var(--nl-text-light);
}

.insight-bullets li::marker {
  color: var(--nl-orange);
}

.insight-bullets--takeaways li {
  color: var(--nl-text);
  font-weight: 500;
}

.insight-takeaways {
  border-color: rgba(232, 93, 4, 0.35);
  background: linear-gradient(180deg, #fff8f3 0%, #fff 55%);
}

.insight-toc li span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--nl-text);
  line-height: 1.4;
}

.insight-section p {
  margin-bottom: 0;
}

.insight-aside .content-card + .content-card {
  margin-top: 16px;
}

.insight-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--nl-text);
  line-height: 1.35;
}

.insight-body p {
  margin: 0;
  font-size: 15px;
  color: var(--nl-text-light);
  flex: 1;
}

.insight-link {
  margin-top: 14px;
  font-size: 15px;
  color: var(--nl-blue);
  font-weight: 400;
  transition: transform 0.25s var(--nl-ease);
  display: inline-block;
}

.insight-card:hover .insight-link {
  transform: translateX(4px);
}

.insights-cta {
  text-align: center;
  margin-top: 36px;
}

/* ========== APP / CTA BAND ========== */
.app-section {
  background: var(--nl-bg-soft);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.app-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--nl-text);
}

.app-copy .accent-bar {
  margin-bottom: 16px;
}

.app-copy p {
  margin: 0 0 24px;
  color: var(--nl-text-light);
}

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--nl-charcoal);
  color: var(--nl-white);
  padding: 10px 16px;
  border-radius: var(--nl-radius);
  text-decoration: none;
  min-width: 160px;
  transition:
    background 0.25s var(--nl-ease),
    transform 0.25s var(--nl-ease),
    box-shadow 0.25s var(--nl-ease);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge:hover {
  text-decoration: none;
  background: #1f1f1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.store-badge small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.8;
}

.store-badge strong {
  font-size: 15px;
}

.app-panel {
  background: var(--nl-white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s var(--nl-ease), transform 0.3s var(--nl-ease);
}

.app-panel:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.app-panel-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.app-panel-icon svg {
  width: 100%;
  height: 100%;
}

.app-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--nl-text);
}

.app-panel p {
  margin: 0 0 20px;
  color: var(--nl-text-light);
  font-size: 16px;
}

/* ========== CONTACT ========== */
.contact-section {
  background: var(--nl-white);
  border-top: 1px solid var(--nl-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  transition:
    box-shadow 0.3s var(--nl-ease),
    transform 0.3s var(--nl-ease),
    border-color 0.3s var(--nl-ease);
}

.contact-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: transparent;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--nl-text);
}

.contact-card p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--nl-text-light);
}

.contact-card a.btn {
  width: 100%;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: var(--nl-bg-hero);
  padding: 48px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--nl-text);
}

.page-hero p {
  margin: 0;
  color: var(--nl-text-light);
  max-width: 50ch;
}

.page-content {
  padding: 48px 0 64px;
}

.content-card {
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 28px;
  margin-bottom: 24px;
  transition: box-shadow 0.25s var(--nl-ease);
}

.content-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--nl-text);
}

.content-card p {
  margin: 0 0 12px;
  color: var(--nl-text-light);
}

.content-card p:last-child {
  margin-bottom: 0;
}

/* ========== HELP CENTER & CONTACT ========== */
.help-search {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin-top: 24px;
}

.help-search input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  font-size: 16px;
  font-family: inherit;
  background: var(--nl-white);
}

.help-search input:focus {
  outline: none;
  border-color: var(--nl-blue);
  box-shadow: 0 0 0 3px rgba(0, 105, 170, 0.12);
}

.help-search-note {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--nl-text-light);
}

.help-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.help-quick-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  color: var(--nl-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s var(--nl-ease), border-color 0.2s var(--nl-ease), color 0.2s var(--nl-ease);
}

.help-quick-card:hover {
  background: var(--nl-bg-soft);
  border-color: rgba(0, 105, 170, 0.35);
  color: var(--nl-blue);
  text-decoration: none;
}

.help-block {
  margin-bottom: 56px;
}

.help-block-header {
  text-align: left;
  margin-bottom: 28px;
}

.help-block-header .accent-bar {
  margin-left: 0;
}

.help-category-grid,
.help-guides-grid,
.help-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.help-category-card h3,
.help-guide-card h3,
.help-policy-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--nl-text);
}

.help-article-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.help-article-list li {
  margin: 0 0 8px;
}

.help-article-list a {
  font-size: 15px;
}

.help-guide-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s var(--nl-ease), box-shadow 0.25s var(--nl-ease);
}

.help-guide-card:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.help-faq-group {
  margin-bottom: 28px;
}

.help-faq-group-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--nl-text);
}

.help-faq-item {
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  background: var(--nl-white);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--nl-ease);
}

.help-faq-item[open] {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 105, 170, 0.25);
}

.help-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--nl-text);
  position: relative;
  padding-right: 44px;
}

.help-faq-item summary::-webkit-details-marker {
  display: none;
}

.help-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nl-orange);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s var(--nl-ease);
}

.help-faq-item[open] summary::after {
  content: "–";
}

.help-faq-answer {
  padding: 0 18px 18px;
}

.help-faq-answer p {
  margin: 0;
  color: var(--nl-text-light);
  line-height: 1.6;
}

.help-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-status-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--nl-border);
  font-size: 15px;
}

.help-status-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.help-status-list li:first-child {
  padding-top: 0;
}

.help-status-ok {
  color: #1a7f37;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.help-contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.help-contact-banner h2 {
  margin-bottom: 8px;
}

.contact-channels {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 36px;
}

.contact-hours {
  font-size: 13px !important;
  color: var(--nl-text-light);
  margin-bottom: 16px !important;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--nl-text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.35;
  font-family: inherit;
  color: var(--nl-text);
  background: var(--nl-white);
}

.form-row input,
.form-row textarea {
  -webkit-appearance: none;
  appearance: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--nl-blue);
  box-shadow: 0 0 0 3px rgba(0, 105, 170, 0.12);
}

.contact-success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--nl-radius);
  background: #edf8f0;
  border: 1px solid #b7e0c2;
  color: var(--nl-text);
}

.contact-success p {
  margin: 6px 0 0;
}

.contact-steps {
  margin: 12px 0 18px;
  padding-left: 1.2rem;
  color: var(--nl-text-light);
}

.contact-steps li {
  margin-bottom: 8px;
}

.contact-aside .content-card + .content-card {
  margin-top: 16px;
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #b42318;
}

.field-error.is-visible {
  display: block;
  animation: auth-alert-in 0.28s var(--nl-ease-out) both;
}

/* ========== AUTH (login / forgot password) ========== */
.auth-page {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 93, 4, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(0, 105, 170, 0.07), transparent 50%),
    linear-gradient(180deg, #f3f3f3 0%, #fafafa 45%, #ffffff 100%);
  min-height: calc(100vh - var(--nl-header-h) - var(--nl-nav-h));
  padding: 40px 0 64px;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--nl-border);
  background: var(--nl-white);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 18px 40px rgba(44, 44, 44, 0.08);
}

.auth-brand {
  background:
    linear-gradient(160deg, #2c2c2c 0%, #3a3a3a 48%, #2f3540 100%);
  color: var(--nl-white);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.auth-brand::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 40%;
  height: 220px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.35), transparent 70%);
  pointer-events: none;
}

.auth-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.auth-brand .accent-bar {
  background: var(--nl-orange);
  margin-bottom: 20px;
}

.auth-brand-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.auth-brand h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--nl-white);
}

.auth-brand-copy {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.auth-brand-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-brand-points li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-brand-points li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-brand-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-orange);
}

.auth-brand-art {
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.85;
}

.auth-brand-art svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  background: var(--nl-white);
}

.auth-card {
  width: 100%;
  max-width: 400px;
}

.auth-card-header {
  margin-bottom: 22px;
}

.auth-card-header h2 {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--nl-charcoal);
}

.auth-card-header p {
  margin: 0;
  font-size: 15px;
  color: var(--nl-text-light);
}

.auth-alert {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--nl-radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  transform-origin: top center;
}

.auth-alert.is-visible {
  display: block;
  animation: auth-alert-in 0.4s var(--nl-ease-out) both;
}

.auth-alert--error {
  border: 1px solid #f0b4b4;
  background: #fff5f5;
  color: #8a1f1f;
}

.auth-alert--success {
  border: 1px solid #b7e0c2;
  background: #edf8f0;
  color: #1f5c33;
}

@keyframes auth-alert-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 12px;
  display: inline-flex;
  color: var(--nl-text-light);
  pointer-events: none;
}

.auth-input-wrap input {
  width: 100%;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 13px 14px 13px 42px;
  font-size: 16px;
  line-height: 1.35;
  font-family: inherit;
  color: var(--nl-text);
  background: #fbfbfb;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 0.2s var(--nl-ease),
    box-shadow 0.2s var(--nl-ease),
    background 0.2s var(--nl-ease);
}

.auth-input-wrap input:hover {
  background: var(--nl-white);
}

.auth-input-wrap input:focus {
  outline: none;
  border-color: var(--nl-blue);
  background: var(--nl-white);
  box-shadow: 0 0 0 3px rgba(0, 105, 170, 0.12);
}

.auth-input-wrap input.is-invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.auth-input-wrap #password,
.auth-input-wrap input[name="password"] {
  padding-right: 64px;
}

.auth-toggle-pw {
  position: absolute;
  right: 8px;
  border: 0;
  background: transparent;
  color: var(--nl-blue);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: var(--nl-radius);
}

.auth-toggle-pw:hover {
  background: rgba(0, 105, 170, 0.08);
  text-decoration: none;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--nl-text);
  cursor: pointer;
  user-select: none;
}

.auth-remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--nl-blue);
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
  min-height: 48px;
}

.auth-form.is-loading .auth-submit {
  opacity: 0.85;
  cursor: wait;
}

.auth-card-footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--nl-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-card-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--nl-text-light);
}

.auth-link {
  color: var(--nl-blue);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1.5px;
  transition:
    color 0.2s var(--nl-ease),
    background-size 0.25s var(--nl-ease);
}

.auth-link:hover {
  color: var(--nl-blue-hover);
  text-decoration: none;
  background-size: 100% 1.5px;
}

.auth-link--sm {
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .help-category-grid,
  .help-guides-grid,
  .help-policy-grid,
  .contact-channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .auth-shell {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .auth-brand {
    padding: 32px 28px 28px;
  }

  .auth-brand-art {
    display: none;
  }

  .auth-panel {
    padding: 28px 24px 36px;
  }

  .legal-index-grid,
  .legal-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--nl-charcoal);
  color: var(--nl-white);
  padding-top: 48px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--nl-white);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s var(--nl-ease), padding-left 0.2s var(--nl-ease);
}

.footer-col a:hover {
  color: var(--nl-white);
  text-decoration: underline;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--nl-white);
  text-decoration: underline;
}

.legal-meta {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--nl-text-light);
}

.legal-section h2 {
  scroll-margin-top: 96px;
}

.legal-contact-card .insight-cta-actions {
  margin-top: 16px;
}

.legal-aside-company {
  font-size: 15px;
  line-height: 1.55;
  color: var(--nl-text-light);
}

.legal-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.legal-index-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    transform 0.25s var(--nl-ease),
    box-shadow 0.25s var(--nl-ease);
}

.legal-index-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.legal-index-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--nl-charcoal);
}

.legal-index-card p {
  margin: 0 0 14px;
  color: var(--nl-text-light);
  font-size: 15px;
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-contact-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.help-legal-more {
  margin: 20px 0 0;
  font-size: 15px;
  color: var(--nl-text-light);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: var(--nl-white);
  text-decoration: none;
  transition:
    background 0.25s var(--nl-ease),
    transform 0.25s var(--nl-ease),
    border-color 0.25s var(--nl-ease);
}

.social-links a svg {
  width: 16px;
  height: 16px;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-copy {
  padding: 0 0 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.disclosures {
  background: var(--nl-bg-soft);
  padding: 24px 0;
  font-size: 13px;
  color: var(--nl-text-light);
}

.disclosures summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--nl-text);
  margin-bottom: 8px;
}

.disclosures p {
  margin: 8px 0 0;
  max-width: 90ch;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .insights-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }

  .utility-nav a:nth-child(n + 3) {
    display: none;
  }

  .hero-grid {
    gap: 20px;
    min-height: 480px;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .hero-copy {
    padding: 48px 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-vector {
    width: min(100%, 400px);
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  .site-header .container.header-top {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }

  .hero {
    padding: 0;
  }

  .hero .container.hero-grid {
    padding: 28px 20px 36px;
    gap: 20px;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
    order: 2;
  }

  .hero-copy h1 {
    max-width: none;
    width: 100%;
  }

  .hero-copy p {
    max-width: none;
    font-size: 17px;
    margin-bottom: 20px;
  }

  .domain-search-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }

  .domain-search-hero:focus-within {
    box-shadow: none;
    border-color: transparent;
  }

  .domain-search-hero input {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    box-sizing: border-box;
  }

  .domain-search-hero:focus-within input {
    border-color: var(--nl-blue);
    box-shadow: 0 0 0 3px rgba(0, 105, 170, 0.12);
  }

  .domain-search-hero .btn {
    width: 100%;
    min-height: 48px;
    border-radius: var(--nl-radius);
  }

  .hero-visual {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 220px;
    height: auto;
    padding: 8px 0 4px;
  }

  .hero-vector {
    width: min(78%, 280px);
    max-height: 280px;
    margin: 0 auto;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header-actions {
    display: flex;
  }

  .cart-btn--header {
    display: inline-flex;
  }

  .cart-btn--nav {
    display: none;
  }

  .utility-nav {
    display: none;
  }

  .site-navbar {
    max-height: 0;
    overflow: hidden;
    border-top-width: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      max-height 0.45s var(--nl-ease-out),
      opacity 0.3s var(--nl-ease),
      transform 0.35s var(--nl-ease-out),
      border-top-width 0.25s ease;
  }

  .site-navbar.mobile-open {
    max-height: 85vh;
    overflow-y: auto;
    border-top-width: 1px;
    position: relative;
    z-index: 45;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 8px 0 16px;
    gap: 0;
  }

  .site-navbar.mobile-open .navbar-inner {
    animation: mobileNavIn 0.4s var(--nl-ease-out) both;
  }

  @keyframes mobileNavIn {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .primary-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
  }

  .navbar-actions {
    width: 100%;
    justify-content: stretch;
    gap: 10px;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
  }

  .site-navbar.mobile-open .navbar-actions {
    animation: mobileNavIn 0.45s var(--nl-ease-out) 0.08s both;
  }

  .search-btn,
  .cart-btn,
  .signon-btn {
    flex: 1;
    justify-content: center;
    height: 44px;
  }

  .cart-btn {
    flex: 0 0 48px;
    padding: 0;
  }

  .cart-count {
    top: 4px;
    right: 8px;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s var(--nl-ease);
  }

  .nav-item.open {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    height: 52px;
    padding: 0 4px;
    transition: background 0.25s var(--nl-ease), color 0.25s var(--nl-ease);
  }

  .nav-trigger .chevron {
    transition: transform 0.35s var(--nl-ease-out);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
    min-width: 0;
    border-radius: 0;
    top: auto;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.4s var(--nl-ease-out),
      opacity 0.28s var(--nl-ease),
      transform 0.35s var(--nl-ease-out),
      padding 0.35s var(--nl-ease),
      visibility 0.35s;
  }

  .nav-item.open .dropdown {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    padding: 6px 0 14px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dropdown a,
  .dropdown-heading {
    opacity: 0;
    transform: translateX(-10px);
    transition:
      opacity 0.28s var(--nl-ease),
      transform 0.32s var(--nl-ease-out),
      background 0.2s var(--nl-ease),
      color 0.2s var(--nl-ease),
      padding-left 0.2s var(--nl-ease);
  }

  .nav-item.open .dropdown a,
  .nav-item.open .dropdown-heading {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-item.open .dropdown > :nth-child(1) { transition-delay: 0.04s; }
  .nav-item.open .dropdown > :nth-child(2) { transition-delay: 0.07s; }
  .nav-item.open .dropdown > :nth-child(3) { transition-delay: 0.1s; }
  .nav-item.open .dropdown > :nth-child(4) { transition-delay: 0.13s; }
  .nav-item.open .dropdown > :nth-child(5) { transition-delay: 0.16s; }
  .nav-item.open .dropdown > :nth-child(6) { transition-delay: 0.19s; }
  .nav-item.open .dropdown > :nth-child(7) { transition-delay: 0.22s; }
  .nav-item.open .dropdown > :nth-child(8) { transition-delay: 0.25s; }
  .nav-item.open .dropdown > :nth-child(9) { transition-delay: 0.28s; }
  .nav-item.open .dropdown > :nth-child(10) { transition-delay: 0.31s; }

  .dropdown a {
    color: var(--nl-white);
    padding: 12px 12px 12px 16px;
  }

  .dropdown a:hover,
  .dropdown a:active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--nl-white);
    padding-left: 22px;
  }

  .dropdown-heading {
    color: rgba(255, 255, 255, 0.55);
    padding-left: 16px;
  }

  .nav-backdrop {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity 0.35s var(--nl-ease);
  }

  .search-panel.open {
    max-height: 220px;
  }

  .search-form {
    flex-direction: column;
    max-width: none;
    gap: 10px;
  }

  .search-form input {
    width: 100%;
    height: 48px;
  }

  .search-form .btn {
    width: 100%;
  }

  .promo-grid,
  .app-grid,
  .insights-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .insights-grid--page {
    grid-template-columns: 1fr;
  }

  .insight-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .help-category-grid,
  .help-guides-grid,
  .help-policy-grid,
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .help-search {
    flex-direction: column;
  }

  .help-search .btn {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    padding: 12px 6px;
  }

  .product-icon {
    width: 68px;
    height: 68px;
  }

  .product-icon svg {
    width: 52px;
    height: 52px;
  }

  .header-top {
    min-height: 52px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 36px 0;
  }

  .page-content {
    padding: 36px 0 48px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-label {
    display: none;
  }

  .container {
    padding: 0 18px;
  }

  .hero .container.hero-grid {
    padding: 24px 18px 32px;
  }

  .hero-visual {
    min-height: 200px;
  }

  .hero-vector {
    width: min(72%, 220px);
    max-height: 220px;
  }

  .logo-text {
    font-size: 18px;
  }

  .products-grid {
    gap: 8px;
  }

  .product-card span {
    font-size: 14px;
  }

  .promo-stat {
    font-size: 40px;
  }

  .store-badges {
    flex-direction: column;
  }

  .store-badge {
    width: 100%;
  }

  .signon-btn span {
    display: inline;
  }

  .contact-card a.btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* ========== DOMAIN SEARCH PAGE ========== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.domain-search-page {
  overflow: clip;
}

.ds-hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 93, 4, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(0, 105, 170, 0.1), transparent 50%),
    linear-gradient(180deg, #ececec 0%, #f7f7f7 55%, #ffffff 100%);
  padding: 56px 0 40px;
}

.ds-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ds-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: ds-orb-drift 14s var(--nl-ease) infinite alternate;
}

.ds-orb--1 {
  width: 280px;
  height: 280px;
  background: rgba(232, 93, 4, 0.28);
  top: -60px;
  left: -40px;
}

.ds-orb--2 {
  width: 220px;
  height: 220px;
  background: rgba(0, 105, 170, 0.2);
  top: 40px;
  right: 8%;
  animation-delay: -4s;
}

.ds-orb--3 {
  width: 180px;
  height: 180px;
  background: rgba(247, 127, 0, 0.22);
  bottom: -40px;
  left: 35%;
  animation-delay: -7s;
}

.ds-grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 44, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 44, 44, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.7;
}

@keyframes ds-orb-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, 18px, 0) scale(1.08); }
}

.ds-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

.ds-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nl-orange);
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.22);
  border-radius: 999px;
}

.ds-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-orange);
  box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.5);
  animation: ds-pulse 1.8s ease-out infinite;
}

@keyframes ds-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(232, 93, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0); }
}

.ds-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.12;
  color: var(--nl-charcoal);
  max-width: 14ch;
}

.ds-lead {
  margin: 0 0 28px;
  color: var(--nl-text-light);
  font-size: 18px;
  max-width: 42ch;
}

.ds-search {
  margin-bottom: 20px;
}

.ds-search-shell {
  display: flex;
  align-items: stretch;
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 44, 44, 0.08);
  transition: border-color 0.25s var(--nl-ease), box-shadow 0.25s var(--nl-ease);
}

.ds-search-shell:focus-within {
  border-color: var(--nl-blue);
  box-shadow: 0 0 0 4px rgba(0, 105, 170, 0.12), 0 16px 40px rgba(44, 44, 44, 0.1);
}

.ds-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  color: var(--nl-text-light);
  flex: 0 0 auto;
}

.ds-search-icon svg {
  width: 22px;
  height: 22px;
}

.ds-search-shell input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  height: 58px;
  padding: 0 8px 0 0;
  font-size: 17px;
  font-family: inherit;
  color: var(--nl-text);
}

.ds-search-shell input:focus {
  outline: none;
}

.ds-search-btn {
  position: relative;
  border-radius: 0;
  min-width: 120px;
  min-height: 58px;
  transform: none;
}

.ds-search-btn:hover {
  transform: none;
}

.ds-btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ds-spin 0.7s linear infinite;
}

.ds-search.is-loading .ds-btn-label {
  opacity: 0;
}

.ds-search.is-loading .ds-btn-spinner {
  display: inline-block;
  position: absolute;
  inset: 50% auto auto 50%;
  margin: -9px 0 0 -9px;
}

@keyframes ds-spin {
  to { transform: rotate(360deg); }
}

.ds-search-hint {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--nl-text-light);
}

.ds-tld-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--nl-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--nl-charcoal);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s var(--nl-ease), border-color 0.2s var(--nl-ease), background 0.2s var(--nl-ease);
}

.ds-chip span {
  color: var(--nl-text-light);
  font-weight: 500;
  font-size: 12px;
}

.ds-chip:hover {
  transform: translateY(-2px);
  border-color: var(--nl-orange);
  background: #fff;
}

.ds-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.ds-vector {
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(232, 93, 4, 0.2));
}

.ds-ring--outer {
  transform-origin: 260px 260px;
  animation: ds-spin-slow 28s linear infinite;
}

.ds-ring--mid {
  transform-origin: 260px 260px;
  animation: ds-spin-slow 18s linear infinite reverse;
}

.ds-core {
  transform-origin: 260px 260px;
  animation: ds-breathe 4.5s ease-in-out infinite;
}

.ds-float {
  transform-box: fill-box;
  transform-origin: center;
  animation: ds-float 5.5s ease-in-out infinite;
}

.ds-float--2 { animation-delay: -1.2s; }
.ds-float--3 { animation-delay: -2.4s; }
.ds-float--4 { animation-delay: -3.1s; }

.ds-dash {
  stroke-dashoffset: 0;
  animation: ds-dash-move 6s linear infinite;
}

.ds-dash--delay {
  animation-delay: -2s;
}

@keyframes ds-spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes ds-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes ds-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ds-dash-move {
  to { stroke-dashoffset: -48; }
}

.ds-results-section {
  background: var(--nl-bg);
}

.ds-results {
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--nl-ease-out), transform 0.4s var(--nl-ease-out);
}

.ds-results.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ds-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.ds-results-head h2 {
  margin: 0 0 4px;
  font-size: 24px;
  color: var(--nl-charcoal);
}

.ds-results-head p {
  margin: 0;
  color: var(--nl-text-light);
  font-size: 15px;
}

.ds-results-pulse {
  display: flex;
  gap: 6px;
}

.ds-results-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-orange);
  animation: ds-dot 1.2s ease-in-out infinite;
}

.ds-results-pulse span:nth-child(2) { animation-delay: 0.15s; }
.ds-results-pulse span:nth-child(3) { animation-delay: 0.3s; }

@keyframes ds-dot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

.ds-result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  animation: ds-row-in 0.45s var(--nl-ease-out) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}

@keyframes ds-row-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ds-result-row.is-available {
  border-color: rgba(0, 140, 80, 0.28);
  background: linear-gradient(90deg, rgba(0, 140, 80, 0.05), #fff 40%);
}

.ds-result-row.is-taken {
  border-color: rgba(180, 40, 40, 0.18);
  background: linear-gradient(90deg, rgba(180, 40, 40, 0.04), #fff 40%);
}

.ds-result-row.is-error {
  border-color: rgba(0, 105, 170, 0.22);
}

.ds-result-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--nl-charcoal);
  word-break: break-word;
}

.ds-result-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.ds-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.is-available .ds-status-pill {
  color: #0a7a45;
  background: rgba(0, 140, 80, 0.12);
}

.is-taken .ds-status-pill {
  color: #a12626;
  background: rgba(180, 40, 40, 0.1);
}

.is-error .ds-status-pill {
  color: var(--nl-blue);
  background: rgba(0, 105, 170, 0.1);
}

.ds-price {
  font-weight: 700;
  color: var(--nl-charcoal);
}

.ds-price small {
  margin-left: 2px;
  font-weight: 500;
  color: var(--nl-text-light);
}

.ds-result-note {
  font-size: 14px;
  color: var(--nl-text-light);
}

.ds-taken-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #a12626;
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.16);
}

.ds-add-btn.is-added {
  background: #0a7a45;
  border-color: #0a7a45;
}

.ds-results-error {
  padding: 24px;
  border: 1px solid rgba(180, 40, 40, 0.2);
  border-radius: 12px;
  background: rgba(180, 40, 40, 0.05);
}

.ds-results-error strong {
  display: block;
  margin-bottom: 6px;
  color: #a12626;
}

.ds-results-error p {
  margin: 0;
  color: var(--nl-text-light);
}

.ds-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.ds-feature {
  padding: 24px;
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  background: var(--nl-white);
  transition: transform 0.25s var(--nl-ease), box-shadow 0.25s var(--nl-ease);
}

.ds-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.ds-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: var(--nl-orange);
}

.ds-feature-icon svg {
  width: 100%;
  height: 100%;
}

.ds-feature h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--nl-charcoal);
}

.ds-feature p {
  margin: 0;
  font-size: 15px;
  color: var(--nl-text-light);
}

.ds-transfer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--nl-border);
  background:
    linear-gradient(120deg, rgba(232, 93, 4, 0.08), rgba(0, 105, 170, 0.06)),
    var(--nl-bg-soft);
}

.ds-transfer-banner h2 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--nl-charcoal);
}

.ds-transfer-banner p {
  margin: 0;
  color: var(--nl-text-light);
}

/* ========== CART DRAWER ========== */
button.cart-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  font: inherit;
}

.cart-count[hidden] {
  display: none !important;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 20, 20, 0.45);
  opacity: 0;
  transition: opacity 0.28s var(--nl-ease);
}

.cart-backdrop.visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 100%;
  background: var(--nl-white);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.16);
  transform: translateX(104%);
  transition: transform 0.35s var(--nl-ease-out);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--nl-border);
}

.cart-drawer-head h2 {
  margin: 0;
  font-size: 20px;
  color: var(--nl-charcoal);
}

.cart-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--nl-bg-soft);
  color: var(--nl-charcoal);
}

.cart-drawer-close svg {
  width: 18px;
  height: 18px;
}

.cart-drawer-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 16px 20px;
}

.cart-empty {
  text-align: center;
  padding: 40px 12px;
  color: var(--nl-text-light);
}

.cart-empty p {
  margin: 0 0 16px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--nl-border);
  border-radius: 10px;
  background: var(--nl-bg-soft);
}

.cart-item strong {
  display: block;
  color: var(--nl-charcoal);
  word-break: break-word;
}

.cart-item span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--nl-text-light);
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--nl-blue);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}

.cart-drawer-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--nl-border);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--nl-text);
}

.cart-drawer-foot .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .ds-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ds-hero-visual {
    order: -1;
    min-height: 240px;
  }

  .ds-vector {
    width: min(72%, 320px);
  }

  .ds-feature-row {
    grid-template-columns: 1fr;
  }

  .ds-transfer-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .ds-hero {
    padding: 40px 0 28px;
  }

  .ds-search-shell {
    flex-wrap: wrap;
  }

  .ds-search-shell input {
    width: calc(100% - 52px);
  }

  .ds-search-btn {
    width: 100%;
  }

  .ds-result-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ds-result-actions {
    width: 100%;
  }

  .ds-result-actions .btn {
    width: 100%;
  }
}

/* ========== TRANSFER PAGE ========== */
.ts-hero .ds-orb--2 {
  background: rgba(0, 105, 170, 0.28);
}

.ts-vector {
  filter: drop-shadow(0 18px 36px rgba(0, 105, 170, 0.18));
}

.ts-node--left,
.ts-node--right {
  transform-box: fill-box;
  transform-origin: center;
  animation: ds-float 5.8s ease-in-out infinite;
}

.ts-node--right {
  animation-delay: -1.8s;
}

.ts-arc {
  stroke-dashoffset: 0;
  animation: ds-dash-move 5.5s linear infinite;
}

.ts-arc--delay {
  animation-delay: -2.2s;
}

.ts-arrow {
  animation: ts-arrow-pulse 1.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes ts-arrow-pulse {
  0%, 100% { opacity: 0.55; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.ts-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ts-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  background: var(--nl-white);
}

.ts-step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--nl-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.ts-steps h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--nl-charcoal);
}

.ts-steps p {
  margin: 0;
  font-size: 14px;
  color: var(--nl-text-light);
}

.ts-auth-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 105, 170, 0.18);
  background: rgba(0, 105, 170, 0.06);
  color: var(--nl-text);
  font-size: 14px;
}

.ts-auth-note strong {
  color: var(--nl-blue);
}

@media (max-width: 900px) {
  .ts-steps {
    grid-template-columns: 1fr;
  }
}


