/* ─────────────────────────────────────────────────────────────
   Prototype styles — IK Manager + NNNS marketplace
   ───────────────────────────────────────────────────────────── */

:root {
  --ik-soft: #F4F6FD;
  /* NNNS palette extracted from screenshots */
  --nn-yellow: #FFD400;
  --nn-black: #0A0A0A;
  --nn-bg: #F8F8F6;
  --nn-bg2: #EDEDEA;
  --nn-border: #E5E4DF;
  --nn-text: #1A1A1A;
  --nn-text-2: #6B6B66;
  --nn-staging: #C77A1B;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  color: var(--ik-gray-600);
  -webkit-font-smoothing: antialiased;
  background: var(--ik-soft);
}

[data-lucide] { width: 16px; height: 16px; display: block; stroke-width: 2; }

/* ═════════ Screen router ═════════ */
.screen { display: none; min-height: 100vh; }
.screen[data-active] { display: block; }

/* ═════════ IK SHELL — sidebar + header ═════════ */
.ik-stage {
  width: 100vw; min-height: 100vh;
  display: grid;
  grid-template-columns: var(--rail-w, 64px) var(--submenu-w, 224px) 1fr;
  background: var(--ik-soft);
  overflow: hidden;
}
.ik-stage.no-submenu {
  grid-template-columns: 224px 1fr;
}

/* Icon rail */
.ik-rail {
  background: var(--ik-manager-bg);
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 0; gap: 0;
  height: 100vh; position: sticky; top: 0;
  overflow-y: auto;
  width: 64px;
}
.ik-rail::-webkit-scrollbar { width: 0; }
.ik-rail.wide {
  width: 224px; align-items: stretch;
}
.ik-rail .avatar-slot {
  width: 48px; height: 48px; padding: 4px; border-radius: 12px; margin-bottom: 8px;
  align-self: center;
}
.ik-rail .avatar {
  width: 40px; height: 40px; border-radius: 8px;
  background: url(assets/orga-avatar.png) center/cover no-repeat, #FFEDCF;
}
.ik-rail .group { display: flex; flex-direction: column; align-items: center; }
.ik-rail .sep { width: 26px; height: 1px; background: var(--ik-manager-active); margin: 10px 0; align-self: center; }
.ik-rail .item {
  width: 42px; height: 42px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ik-manager-icon); cursor: pointer;
  transition: background 180ms var(--ease-standard), color 180ms;
}
.ik-rail .item:hover { background: var(--ik-manager-hover); color: #fff; }
.ik-rail .item [data-lucide] { width: 18px; height: 18px; }
.ik-rail .k-category {
  width: 42px; height: 42px; border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  margin: 2px 0;
  transition: background 180ms var(--ease-standard), border-color 180ms;
  cursor: pointer;
  align-self: center;
}
.ik-rail .k-category:hover { background: var(--ik-manager-hover); }
.ik-rail .k-category.active {
  background: var(--ik-manager-active);
  border-color: var(--ik-blue-500);
}
.ik-rail .k-inner {
  width: 24px; height: 24px; border-radius: 4px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.ik-rail .k-inner img { width: 16px; height: 16px; display: block; }
.ik-rail .k-category.alone .k-inner { background: transparent; }
.ik-rail .k-category.alone .k-inner img { width: 24px; height: 24px; }

/* Wide variant rows (used on home screen) */
.ik-rail.wide .row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px; height: 40px; margin: 1px 8px;
  border-radius: 8px;
  color: #BFCAD3; font-size: 14px;
  cursor: pointer;
  transition: background 180ms var(--ease-standard);
}
.ik-rail.wide .row:hover { background: var(--ik-manager-hover); color: #fff; }
.ik-rail.wide .row.active { background: var(--ik-manager-active); color: #fff; }
.ik-rail.wide .row [data-lucide] { width: 16px; height: 16px; flex: 0 0 16px; }
.ik-rail.wide .row .grow { flex: 1; }
.ik-rail.wide .row .chev { color: #6E7B86; }
.ik-rail.wide .row .red-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ik-danger-500);
}
.ik-rail.wide .row .prod-img {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: block;
  background: #fff; padding: 1px;
}
.ik-rail.wide .row .prod-img.bare { background: transparent; padding: 0; }
.ik-rail.wide .section-label {
  padding: 16px 16px 6px;
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6E7B86;
}
.ik-rail.wide .header-block {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 12px; height: 56px;
  border-bottom: 1px solid var(--ik-manager-active);
}
.ik-rail.wide .header-block .avatar {
  width: 32px; height: 32px; border-radius: 6px;
  background: url(assets/orga-avatar.png) center/cover no-repeat, #FFEDCF;
}
.ik-rail.wide .header-block .meta { display: flex; flex-direction: column; line-height: 1.2; }
.ik-rail.wide .header-block .org-name { color: #fff; font-size: 14px; font-weight: 500; }
.ik-rail.wide .header-block .org-role { color: #6E7B86; font-size: 11px; }
.ik-rail.wide .header-block .swap {
  margin-left: auto; color: #BFCAD3; cursor: pointer;
}
.ik-rail.wide .footer {
  margin-top: auto;
  border-top: 1px solid var(--ik-manager-active);
  padding: 12px;
  display: flex; gap: 8px;
}
.ik-rail.wide .footer .pill {
  width: 32px; height: 32px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
}
.ik-rail.wide .footer .pill.bug { background: #FF8500; }
.ik-rail.wide .footer .pill.feedback { background: #3EBF4D; }

/* Submenu (224 column) */
.ik-submenu {
  background: var(--ik-manager-bg-submenu);
  display: flex; flex-direction: column;
  padding: 12px 0; gap: 4px;
  min-height: 100vh; position: sticky; top: 0;
  overflow-y: auto;
}
.ik-submenu::-webkit-scrollbar { width: 0; }
.ik-submenu .nav-back-row {
  padding: 0 16px; display: flex; align-items: center; height: 48px; margin-bottom: 8px;
}
.ik-submenu .back-btn {
  width: 24px; height: 24px; border-radius: 4px;
  background: var(--ik-manager-active);
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: background 180ms var(--ease-standard);
}
.ik-submenu .back-btn:hover { background: var(--ik-manager-hover); }
.ik-submenu .back-btn [data-lucide] { width: 14px; height: 14px; }

.ik-submenu .domain-pill {
  margin: 0 12px 8px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; height: 38px;
  background: var(--ik-manager-active);
  border-radius: 6px;
  color: #fff; font-size: 14px;
  cursor: pointer;
}
.ik-submenu .domain-pill .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: #2A8A8A; flex: 0 0 14px;
}
.ik-submenu .domain-pill .grow { flex: 1; }

.ik-submenu .label { padding: 8px 16px 4px; color: #fff; font-size: 14px; font-weight: 500; }

.ik-submenu .item {
  margin: 0 6px;
  padding: 9px 12px; min-height: 36px;
  border-radius: 8px;
  color: var(--ik-gray-50); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: background 180ms var(--ease-standard);
}
.ik-submenu .item:hover { background: var(--ik-manager-hover); }
.ik-submenu .item.active { background: var(--ik-manager-active); }
.ik-submenu .item [data-lucide] { width: 14px; height: 14px; color: #fff; }
.ik-submenu .item .prod-img { width: 16px; height: 16px; }
.ik-submenu .item .grow { flex: 1; }
.ik-submenu .item .chev { color: #fff; }

/* Main content area */
.ik-main {
  min-width: 0;
  display: flex; flex-direction: column;
  background: var(--ik-soft);
  min-height: 100vh;
}

.ik-header {
  height: 64px; background: #fff;
  box-shadow: inset 0 -1px 0 rgba(224,224,224,0.6);
  display: flex; align-items: center; padding: 0 16px; gap: 16px;
  position: sticky; top: 0; z-index: 5;
}
.ik-search-wrap {
  display: flex;
  width: min(600px, 48vw);
  height: 44px; border-radius: 4px; overflow: hidden;
}
.ik-search {
  flex: 1; height: 44px; border-radius: 4px 0 0 4px;
  background: var(--ik-gray-100);
  display: flex; align-items: center; gap: 16px; padding: 12px;
  color: var(--ik-gray-500);
}
.ik-search [data-lucide] { width: 16px; height: 16px; flex: 0 0 16px; }
.ik-search input {
  flex: 1; border: 0; background: transparent; font: inherit;
  font-size: 14px; color: var(--ik-gray-600); outline: none; min-width: 0;
}
.ik-search input::placeholder { color: var(--ik-gray-500); }
.ik-search-filter {
  width: 120px; flex: 0 0 120px;
  height: 44px;
  background: var(--ik-gray-100);
  border-left: 1px solid var(--ik-gray-300);
  padding: 12px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 14px; color: var(--ik-gray-500);
}
.ik-search-filter [data-lucide] { width: 14px; height: 14px; }
.ik-header-spacer { flex: 1; }
.ik-header-icons { display: flex; align-items: center; height: 64px; }
.ik-header-icons .btn {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; color: var(--ik-gray-600);
  transition: background 180ms var(--ease-standard);
}
.ik-header-icons .btn:hover { background: var(--ik-gray-100); }
.ik-header-icons .btn [data-lucide] { width: 22px; height: 22px; }
.ik-header-icons .btn .red-dot {
  position: absolute; top: 18px; right: 18px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ik-danger-500);
  border: 2px solid #fff;
}
.ik-header-icons .user-avatar {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 50%;
  border: 1px solid var(--ik-gray-300);
  background: url(assets/user-avatar.jpg) center/cover no-repeat;
  background-color: var(--ik-gray-100);
}

/* ═════════ IK BODY ═════════ */
.ik-body {
  flex: 1;
  padding: 32px 40px 48px;
  display: flex; flex-direction: column; gap: 32px;
  max-width: 1520px; width: 100%;
  margin: 0 auto;
}

/* Crumb */
.ik-crumb { display: flex; align-items: center; gap: 8px; font-size: 14px; flex-wrap: wrap; min-height: 24px; }
.ik-crumb .node {
  padding: 4px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
  color: var(--ik-gray-600); cursor: pointer; text-decoration: none;
}
.ik-crumb .node.plain { color: var(--ik-gray-500); }
.ik-crumb .node.last { font-weight: 500; color: var(--ik-gray-600); }
.ik-crumb .node:hover { background: rgba(0,0,0,0.04); }
.ik-crumb .node [data-lucide] { width: 16px; height: 16px; }
.ik-crumb .chev-sep [data-lucide] { width: 14px; height: 14px; color: var(--ik-gray-400); }
.ik-crumb .ksuite-mark {
  width: 16px; height: 16px; border-radius: 50%;
  background: #2DA5A5;
  display: inline-block;
}

/* Buttons */
.btn-primary {
  height: 40px; padding: 0 16px; border-radius: 4px;
  background: var(--ik-blue-500); color: #fff;
  border: 0; cursor: pointer; font: inherit; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 180ms var(--ease-standard);
}
.btn-primary:hover { background: var(--ik-blue-700); }
.btn-primary:active { background: var(--ik-blue-600); }
.btn-primary:disabled { background: var(--ik-gray-300); color: var(--ik-gray-400); cursor: not-allowed; }

.btn-secondary {
  height: 40px; padding: 0 16px; border-radius: 4px;
  background: #fff; color: var(--fg-1);
  border: 1px solid var(--ik-gray-300); cursor: pointer; font: inherit; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 180ms var(--ease-standard);
}
.btn-secondary:hover { background: var(--ik-gray-100); }

.btn-link {
  height: 40px; padding: 0; color: var(--ik-blue-500);
  background: transparent; border: 0; cursor: pointer;
  font: inherit; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 180ms var(--ease-standard);
}
.btn-link:hover { color: var(--ik-blue-700); }
.btn-link [data-lucide] { width: 16px; height: 16px; }
.btn-link:disabled { color: var(--ik-gray-400); cursor: not-allowed; }

/* Tabs */
.ik-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.ik-tab {
  height: 44px; border-radius: 6px;
  background: #fff; color: var(--fg-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 180ms var(--ease-standard);
}
.ik-tab:hover { background: var(--ik-gray-100); }
.ik-tab.active {
  background: var(--ik-manager-bg);
  color: #fff;
  font-weight: 500;
}

/* Card */
.card {
  background: #fff; border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.card.tight { padding: 20px 24px; }

/* Domain table */
.dom-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; color: var(--fg-1); }
.dom-table thead th {
  text-align: left; font-weight: 500;
  padding: 12px 16px;
  background: var(--ik-gray-50);
  color: var(--fg-1);
  font-size: 13px;
}
.dom-table thead th .th-inner {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
}
.dom-table thead th .th-inner [data-lucide] { width: 14px; height: 14px; color: var(--fg-2); }
.dom-table thead th:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.dom-table thead th:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.dom-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--ik-gray-300); vertical-align: middle; }
.dom-table tbody tr:last-child td { border-bottom: 0; }
.dom-table .dom-name { display: flex; flex-direction: column; gap: 2px; }
.dom-table .dom-name strong { font-weight: 400; color: var(--fg-1); font-size: 14px; }
.dom-table .dom-name .sub-info { font-size: 12px; color: var(--fg-2); }
.dom-table .dom-name .sub-info.sale { color: var(--nn-staging); }
.dom-table .dom-name .sub-info a { color: var(--ik-blue-500); }
.dom-table .globe {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ik-gray-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ik-gray-500);
}
.dom-table .globe [data-lucide] { width: 14px; height: 14px; }

/* Custom checkbox */
.cbx {
  width: 16px; height: 16px; border-radius: 3px;
  border: 1px solid var(--ik-gray-400);
  background: #fff;
  display: inline-block; vertical-align: middle;
  cursor: pointer;
  position: relative;
}
.cbx.checked { background: var(--ik-blue-500); border-color: var(--ik-blue-500); }
.cbx.checked::after {
  content: ""; position: absolute; left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Options badges */
.opt-badges { display: inline-flex; gap: 4px; }
.opt-badge {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ik-gray-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ik-gray-500);
}
.opt-badge [data-lucide] { width: 10px; height: 10px; stroke-width: 2.2; }
.opt-badge.ok { background: #E0F8E2; color: var(--ik-success-500); }
.opt-badge.lock { background: #E6F5FF; color: var(--ik-blue-500); }
.opt-badge.dns { background: #FFF1E0; color: #C77A1B; }

/* "Vendre" invite shown in the linked-product column when no product is connected */
.sell-invite {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ik-blue-500);
  cursor: pointer;
  padding: 4px 10px;
  border: 1px dashed var(--ik-gray-400);
  border-radius: 999px;
  background: transparent;
  transition: background 140ms, border-color 140ms, color 140ms;
}
.sell-invite [data-lucide] { width: 12px; height: 12px; }
.sell-invite:hover {
  background: #EDF6FF;
  border-color: var(--ik-blue-500);
  border-style: solid;
}

/* "Gérer la vente" variant for an already-listed domain: solid blue stroke */
.sell-invite.manage {
  border-style: solid;
  border-color: var(--ik-blue-500);
  color: var(--ik-blue-500);
}
.sell-invite.manage:hover {
  background: #EDF6FF;
}

/* Mail product chip in linked column (no svg asset for it) */
.linked-mail {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 5px;
  background: #FFE9EC; color: #E0457B;
}
.linked-mail [data-lucide] { width: 14px; height: 14px; }

/* Tag pill */
.tag-pill {
  display: inline-flex; align-items: center;
  height: 22px; padding: 0 10px; border-radius: 11px;
  background: #E0D6F5; color: #6B4FB8;
  font-size: 12px; font-weight: 500;
}

/* Row actions kebab */
.kebab {
  width: 24px; height: 24px; border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ik-gray-500); cursor: pointer;
  transition: background 180ms var(--ease-standard);
  position: relative;
}
.kebab:hover { background: var(--ik-gray-100); color: var(--fg-1); }
.kebab [data-lucide] { width: 16px; height: 16px; }

/* Kebab popover */
.kebab-pop {
  position: absolute;
  top: calc(100% + 4px); right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--ik-gray-300);
  border-radius: 8px;
  box-shadow: var(--shadow-3);
  padding: 4px;
  display: none;
  z-index: 50;
}
.kebab-pop.open { display: block; }
.kebab-pop .pop-item {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--fg-1);
  display: flex; align-items: center; gap: 10px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms var(--ease-standard);
}
.kebab-pop .pop-item:hover { background: var(--ik-gray-100); }
.kebab-pop .pop-item.featured { color: var(--ik-blue-500); font-weight: 500; }
.kebab-pop .pop-item.danger { color: var(--ik-danger-500); }
.kebab-pop .pop-item [data-lucide] { width: 14px; height: 14px; }
.kebab-pop .sep { height: 1px; background: var(--ik-gray-300); margin: 4px 0; }

/* Selection bar */
.sel-bar {
  background: #fff; border-radius: 12px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 24px;
  font-size: 14px;
  margin-top: 12px;
  box-shadow: var(--shadow-1);
}
.sel-bar.sticky {
  position: fixed;
  left: 50%; bottom: 72px;
  transform: translateX(-50%);
  width: calc(100vw - 64px);
  max-width: 1320px;
  margin-top: 0;
  z-index: 80;
  box-shadow: 0 12px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
}
.sel-bar .sel-head {
  display: flex; flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.sel-bar .sel-head strong {
  font-size: 14px; font-weight: 600; color: var(--fg-1);
}
.sel-bar .sel-head span {
  font-size: 12px; color: var(--fg-2);
}
.sel-bar .sel-actions {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  margin-left: 24px;
  flex: 1;
}
.sel-bar .sel-count {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-1);
}
.sel-bar .sel-count .x {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ik-gray-200);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.sel-bar .sel-count .x [data-lucide] { width: 10px; height: 10px; color: var(--fg-2); }
.sel-bar .sel-action {
  color: var(--ik-blue-500);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.sel-bar .sel-action.disabled { color: var(--ik-gray-400); cursor: not-allowed; }
.sel-bar .sel-action.featured {
  color: var(--ik-blue-500);
  font-weight: 600;
  margin-left: auto;
  padding: 8px 14px;
  background: #EDF6FF;
  border-radius: 6px;
}
.sel-bar .sel-action.featured:hover {
  background: var(--ik-blue-500); color: #fff;
}
.sel-bar .sel-action.featured:hover [data-lucide] { color: #fff; }
.sel-bar .sel-action [data-lucide] { width: 14px; height: 14px; }

/* Card head with count */
.card-head {
  display: flex; align-items: center; gap: 16px;
}
.card-head .count { display: inline-flex; align-items: baseline; gap: 8px; }
.card-head .count .num { font-size: 24px; font-weight: 500; color: var(--fg-1); }
.card-head .count .label { font-size: 16px; color: var(--fg-1); }
.card-head .spacer { flex: 1; }
.card-head .icon-btn {
  width: 32px; height: 32px; border-radius: 4px;
  border: 1px solid var(--ik-gray-300);
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-1); cursor: pointer;
  transition: background 180ms var(--ease-standard);
}
.card-head .icon-btn:hover { background: var(--ik-gray-100); }
.card-head .icon-btn [data-lucide] { width: 16px; height: 16px; }
.card-head .pill-button {
  height: 32px; padding: 0 12px; border-radius: 4px;
  border: 1px solid var(--ik-gray-300);
  background: #fff;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--fg-1);
  cursor: pointer;
}
.card-head .pill-button [data-lucide] { width: 14px; height: 14px; }

/* ═════════ HOME SCREEN ═════════ */
.home-greeting { display: flex; align-items: center; gap: 16px; }
.home-greeting .photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: url(assets/user-avatar.jpg) center/cover no-repeat;
  border: 1px solid var(--ik-gray-300);
}
.home-greeting h1 { margin: 0; font-size: 28px; font-weight: 400; color: var(--fg-1); letter-spacing: -0.01em; }
.home-greeting h1 strong { font-weight: 500; }
.home-greeting .email { font-size: 13px; color: var(--fg-2); margin-top: 2px; }

.home-section-bar {
  display: flex; align-items: center;
  margin-top: 12px;
}
.home-section-bar .grow { flex: 1; }
.home-section-bar .perso-link {
  color: var(--ik-blue-500); display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; cursor: pointer;
}
.home-section-bar .perso-link [data-lucide] { width: 14px; height: 14px; }

.ksuite-block {
  display: flex; flex-direction: column; gap: 6px;
}
.ksuite-block .ksuite-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; color: var(--fg-1);
}
.ksuite-block .ksuite-title .k-icon {
  width: 24px; height: 24px; padding: 3px;
  display: flex; align-items: center; justify-content: center;
}
.ksuite-block .ksuite-title .k-icon img { width: 100%; height: 100%; }
.ksuite-block .ksuite-title .pro-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 4px;
  background: linear-gradient(90deg, #FF6B9D, #C04FE0);
  color: #fff; font-weight: 600; letter-spacing: 0.04em;
}
.ksuite-block .ksuite-title [data-lucide] { width: 18px; height: 18px; color: var(--fg-2); }
.ksuite-block .ksuite-sub { color: var(--fg-2); font-size: 13px; padding-left: 32px; }

.ksuite-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 12px;
}
.ksuite-card {
  background: #fff; border-radius: 8px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.ksuite-card .head {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--fg-1);
}
.ksuite-card .head .icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2);
}
.ksuite-card .head .icon [data-lucide] { width: 18px; height: 18px; }
.ksuite-card .head strong { font-weight: 500; }
.ksuite-card .grow { flex: 1; }

.usage-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--fg-2); }
.usage-row .count { color: var(--fg-1); }
.usage-bar { height: 4px; background: var(--ik-gray-200); border-radius: 2px; overflow: hidden; }
.usage-bar .fill { height: 100%; background: #C84B8C; border-radius: 2px; }
.usage-bar .fill.warn { background: var(--ik-danger-500); }

.ksuite-card .actions { display: flex; flex-direction: column; gap: 6px; }
.ksuite-card .actions a { color: var(--ik-blue-500); font-size: 13px; text-decoration: none; cursor: pointer; }
.ksuite-card .actions a:hover { color: var(--ik-blue-700); }
.ksuite-card .info-circle {
  margin-left: auto;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ik-gray-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ik-gray-500);
}
.ksuite-card .info-circle [data-lucide] { width: 11px; height: 11px; }
.ksuite-card .cart {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ik-gray-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ik-gray-500); cursor: pointer;
  margin-left: auto;
}
.ksuite-card .cart [data-lucide] { width: 12px; height: 12px; }

.products-section { margin-top: 24px; }
.products-section .section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; color: var(--fg-1);
  margin-bottom: 12px;
}
.products-section .section-title [data-lucide] { width: 18px; height: 18px; color: var(--fg-2); }

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.product-card {
  background: #fff; border-radius: 8px;
  padding: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.product-card::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent, #FF6B9D);
}
.product-card .body { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.product-card h3 { margin: 0; font-size: 16px; font-weight: 500; color: var(--fg-1); padding-bottom: 8px; }
.product-card .item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ik-gray-200);
  font-size: 14px; color: var(--fg-1); cursor: pointer;
}
.product-card .item:last-child { border-bottom: 0; }
.product-card .item:hover { background: var(--ik-gray-50); }
.product-card .item .icon { width: 20px; height: 20px; flex: 0 0 20px; display: flex; align-items: center; justify-content: center; }
.product-card .item .icon img { width: 16px; height: 16px; }
.product-card .item .icon [data-lucide] { width: 16px; height: 16px; color: var(--fg-2); }
.product-card .item .grow { flex: 1; }
.product-card .item .chev { color: var(--ik-gray-400); }
.product-card .item .chev [data-lucide] { width: 14px; height: 14px; }

.affiliation-bar {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; color: var(--fg-1);
  margin-top: 8px;
  cursor: pointer;
}
.affiliation-bar [data-lucide] { width: 18px; height: 18px; color: var(--fg-2); }

/* ═════════ DOMAIN DASHBOARD ═════════ */
.dom-header {
  display: flex; align-items: flex-start; gap: 24px;
  flex-wrap: wrap;
}
.dom-header .dom-id {
  display: flex; align-items: flex-start; gap: 16px;
}
.dom-header .dom-id .globe-big {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ik-gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--ik-gray-500);
}
.dom-header .dom-id .globe-big [data-lucide] { width: 24px; height: 24px; }
.dom-header .dom-id .info h2 { margin: 0; font-size: 18px; font-weight: 500; color: var(--fg-1); }
.dom-header .dom-id .info .meta { font-size: 13px; color: var(--fg-2); margin-top: 4px; }
.dom-header .dom-id .info .meta a { color: var(--ik-blue-500); margin-left: 8px; }
.dom-header .owner-block { display: flex; flex-direction: column; gap: 4px; }
.dom-header .owner-block .label {
  font-size: 13px; color: var(--fg-2); display: flex; align-items: center; gap: 4px;
}
.dom-header .owner-block .label [data-lucide] { width: 14px; height: 14px; }
.dom-header .owner-block .val { font-size: 14px; color: var(--fg-1); }
.dom-header .owner-block .val a { color: var(--ik-blue-500); margin-left: 8px; }

.dom-header .header-cta { margin-left: auto; align-self: center; }

.connect-block .connect-title {
  font-size: 18px; font-weight: 500; color: var(--fg-1);
  margin: 8px 0 16px;
}

/* Services liés (when site is connected) */
.services-block { display: flex; flex-direction: column; gap: 16px; }
.services-head { display: flex; align-items: center; }
.services-head h3 { margin: 0; font-size: 18px; font-weight: 500; color: var(--fg-1); flex: 1; }
.services-card {
  background: #fff; border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.services-card-head { display: flex; align-items: center; gap: 12px; }
.services-card-head .sc-title { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.services-card-head .sc-title strong { font-size: 14px; font-weight: 500; color: var(--fg-1); }
.services-card-head .sc-title span { font-size: 12px; color: var(--fg-2); }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.service-tile {
  background: var(--ik-soft);
  border-radius: 8px;
  padding: 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.service-tile .st-icon {
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 36px;
}
.service-tile .st-icon [data-lucide] { width: 18px; height: 18px; }
.service-tile .st-body { flex: 1; min-width: 0; }
.service-tile .st-body strong { font-size: 14px; font-weight: 500; color: var(--fg-1); display: block; }
.service-tile .st-body > span { font-size: 12px; color: var(--fg-2); display: block; margin-top: 2px; }
.connect-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.connect-cards:has(.sell-card) { grid-template-columns: repeat(4, 1fr); }
.connect-card {
  background: #fff; border-radius: 12px;
  padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}
.connect-card .illu {
  width: 100%; height: 110px;
  background: var(--ik-gray-50);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ik-gray-400);
  font-family: var(--font-mono); font-size: 11px;
}
.connect-card .illu svg { width: 100%; height: 100%; }
.connect-card .illu.nn-illu { background: #FFFEF5; }
.modal .m-body .nn-link-inline {
  color: var(--nn-black); font-weight: 600;
  text-decoration: underline; text-decoration-color: var(--nn-yellow);
  text-decoration-thickness: 2px; text-underline-offset: 3px;
  cursor: pointer;
}
.connect-card.sell-card a {
  color: var(--nn-black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--nn-yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.connect-card.sell-card a:hover { text-decoration-thickness: 3px; }
.connect-card p { margin: 0; font-size: 14px; color: var(--fg-1); line-height: 1.5; }
.connect-card a { color: var(--ik-blue-500); font-size: 14px; }

.options-actions-row {
  display: grid; grid-template-columns: 2fr 1fr; gap: 24px;
  align-items: start;
}
.opts-card { padding: 24px; }
.opts-card h3 { margin: 0 0 20px; font-size: 16px; font-weight: 500; color: var(--fg-1); }
.opts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.opt-tile {
  border: 1px solid var(--ik-gray-300); border-radius: 8px;
  padding: 14px; display: flex; flex-direction: column; gap: 8px;
}
.opt-tile .tile-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--fg-1); font-weight: 500;
}
.opt-tile .tile-head [data-lucide] { width: 13px; height: 13px; color: var(--fg-3); }
.opt-tile .tile-body { font-size: 12px; color: var(--fg-2); }
.opt-tile .tile-body.empty { font-size: 12px; color: var(--fg-3); }

/* iOS-style toggle */
.toggle {
  width: 32px; height: 18px; border-radius: 999px;
  background: var(--ik-blue-500);
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.toggle::after {
  content: ""; position: absolute;
  top: 2px; left: 16px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 180ms var(--ease-standard);
}
.toggle.off { background: var(--ik-gray-300); }
.toggle.off::after { left: 2px; }
.opt-tile .toggle-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-1);
}

.actions-card { padding: 24px; }
.actions-card h3 { margin: 0 0 16px; font-size: 16px; font-weight: 500; color: var(--fg-1); }
.actions-card a {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ik-blue-500);
  padding: 8px 0; cursor: pointer; text-decoration: none;
}
.actions-card a:hover { color: var(--ik-blue-700); }
.actions-card a [data-lucide] { width: 16px; height: 16px; }
.actions-card a.featured {
  font-weight: 500;
  border-top: 1px solid var(--ik-gray-300);
  margin-top: 8px;
  padding-top: 16px;
}
.actions-card a.disabled {
  color: var(--ik-gray-400); cursor: not-allowed;
  position: relative;
}
.actions-card a.disabled:hover { color: var(--ik-gray-400); }
.actions-card a.disabled .lock-tip {
  display: none;
  position: absolute;
  top: -8px; left: 100%;
  transform: translateY(-100%);
  background: var(--ik-gray-700); color: #fff;
  font-size: 12px; line-height: 1.4;
  padding: 8px 10px; border-radius: 6px;
  width: 240px;
  z-index: 50;
  font-weight: 400;
}
.actions-card a.disabled:hover .lock-tip { display: block; }

/* Error banner */
.error-banner {
  background: #FFF1F0;
  border: 1px solid #F5C2BE;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 8px;
}
.error-banner .ic {
  width: 20px; height: 20px; flex: 0 0 20px;
  border-radius: 50%;
  background: var(--ik-danger-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.error-banner .ic [data-lucide] { width: 14px; height: 14px; }
.error-banner .body strong { display: block; color: var(--fg-1); font-size: 14px; font-weight: 500; }
.error-banner .body p { margin: 4px 0 0; font-size: 13px; color: var(--fg-2); line-height: 1.5; }
.error-banner .body a { color: var(--ik-blue-500); }

/* Pending banner (waiting on owner's acceptance) */
.pending-banner {
  background: #fff;
  border: 1px solid var(--ik-gray-200);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0 0;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pending-banner .ic {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%;
  background: var(--ik-blue-500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pending-banner .ic [data-lucide] { width: 13px; height: 13px; }
.pending-banner .body { flex: 1; min-width: 0; }
.pending-banner strong { color: var(--fg-1); font-size: 14px; font-weight: 600; display: block; }
.pending-banner p { margin: 4px 0 0; font-size: 13px; color: var(--fg-2); line-height: 1.5; }
.pending-banner .pb-actions {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0; margin-left: 8px;
}
.pending-banner .pb-link {
  background: transparent; border: 0; padding: 8px 10px;
  color: var(--ik-blue-500); font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
}
.pending-banner .pb-link:hover { color: var(--ik-blue-700); }
.pending-banner .pb-outline {
  background: #fff; color: var(--ik-blue-500);
  border: 1px solid var(--ik-blue-500);
  border-radius: 6px; padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.pending-banner .pb-outline:hover { background: var(--ik-blue-500); color: #fff; }
.pending-banner .pb-link.danger { color: #E0316E; }
.pending-banner .pb-link.danger:hover { color: #B82357; }
.pending-banner .pb-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ik-blue-500); color: #fff;
  border: 0; border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  text-decoration: none;
  transition: background 0.12s;
}
.pending-banner .pb-primary:hover { background: var(--ik-blue-700); }
.pending-banner .pb-primary [data-lucide] { width: 14px; height: 14px; }
.pending-banner.live-banner .ic { background: var(--ik-blue-500); }
.pending-banner .pb-inline-link {
  color: var(--ik-blue-500);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.pending-banner .pb-inline-link:hover { color: var(--ik-blue-700); }
.pending-banner.sold-pending-banner .ic { background: #1F8A5B; }
.pending-banner.sold-pending-banner strong { color: #1F8A5B; }

/* "Live" variant of the Actions CTA — featured link styled in NNNS yellow */
.actions-card a.featured.live {
  color: var(--nn-black);
  background: var(--nn-yellow);
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 8px;
  border-top: 0;
  font-weight: 600;
}
.actions-card a.featured.live:hover { background: #FFE85B; color: var(--nn-black); }
.actions-card a.featured.live [data-lucide] { color: var(--nn-black); }

/* Sale state banner */
.sale-banner {
  background: #FFF8E1;
  border: 1px solid #F5DA94;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.sale-banner .ic {
  width: 20px; height: 20px; flex: 0 0 20px;
  border-radius: 50%;
  background: var(--nn-yellow);
  color: var(--nn-black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.sale-banner .body { flex: 1; }
.sale-banner strong { color: var(--fg-1); font-size: 14px; font-weight: 500; }
.sale-banner p { margin: 2px 0 0; font-size: 13px; color: var(--fg-2); }
.sale-banner a { color: var(--ik-blue-500); font-size: 14px; }

/* ═════════ MODAL ═════════ */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(15, 17, 26, 0.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal {
  background: #fff;
  border-radius: 12px;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-3);
  display: flex; flex-direction: column;
}
.modal .m-head {
  padding: 24px 28px 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.modal .m-head h2 { margin: 0; font-size: 18px; font-weight: 500; color: var(--fg-1); }
.modal .m-head h2 strong { font-weight: 700; }
.modal .m-close {
  width: 32px; height: 32px; border-radius: 4px;
  background: transparent; border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--fg-2);
}
.modal .m-close:hover { background: var(--ik-gray-100); }

.modal .m-body { padding: 12px 28px 24px; display: flex; flex-direction: column; gap: 16px; }
.modal .m-intro { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.modal .m-intro strong { color: var(--fg-1); font-weight: 500; }
.modal .m-inline-link {
  display: inline-flex; align-items: baseline; gap: 4px;
  color: var(--ik-blue-500); font-weight: 500; cursor: pointer;
  text-decoration: none;
}
.modal .m-inline-link:hover { color: var(--ik-blue-700); }
.modal .m-inline-link [data-lucide] {
  width: 12px; height: 12px;
  align-self: center;
}

.implications {
  background: var(--ik-soft);
  border-radius: 8px;
  padding: 16px 16px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.implications .imp-title { font-size: 13px; font-weight: 500; color: var(--fg-1); }
.implications .imp-row {
  display: flex; gap: 10px; font-size: 13px; color: var(--fg-2); line-height: 1.5;
}
.implications .imp-row .ic {
  flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 1px solid var(--ik-gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--ik-blue-500); margin-top: 1px;
}
.implications .imp-row .ic [data-lucide] { width: 11px; height: 11px; }
.implications .imp-row strong { color: var(--fg-1); font-weight: 500; }

/* Plain bulleted list inside modal body (new authorize / cancel-auth modals) */
.modal .bullets { margin: 4px 0 0; }
.modal .bullets .b-title {
  font-size: 14px; font-weight: 600; color: var(--fg-1);
  margin: 0 0 8px;
}
.modal .bullets ul {
  margin: 0; padding: 0 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--fg-1); line-height: 1.5;
}
.modal .bullets li::marker { color: var(--fg-2); }
.modal .bullets strong { font-weight: 600; color: var(--fg-1); }
.modal .bullets em {
  font-style: normal; font-weight: 600; color: var(--fg-1);
}

/* Danger variant for primary button (cancel-auth confirm) */
.btn-primary.danger {
  background: var(--ik-blue-500);
}
.btn-primary.danger:hover { background: var(--ik-blue-700); }

.encourage {
  border: 1px dashed var(--ik-gray-300);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px; color: var(--fg-2); line-height: 1.5;
}
.encourage strong { color: var(--fg-1); font-weight: 500; }

.modal .ack {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--fg-1);
  cursor: pointer;
  user-select: none;
}
.modal .ack .cbx { margin-top: 1px; flex: 0 0 16px; }

.modal .m-foot {
  padding: 16px 28px 24px;
  border-top: 1px solid var(--ik-gray-200);
  display: flex; gap: 12px; justify-content: flex-end; align-items: center;
}

/* ═════════ REDIRECT SCREEN ═════════ */
.redirect-stage {
  min-height: 100vh; background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
  padding: 40px;
}
.redirect-handshake {
  display: flex; align-items: center; gap: 32px;
}
.redirect-handshake .logo-pill {
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ik-gray-50);
}
.redirect-handshake .logo-pill img { width: 56px; height: 56px; }
.redirect-handshake .logo-pill.nn {
  background: var(--nn-yellow);
  color: var(--nn-black);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
  flex-direction: column; line-height: 0.9;
}
.redirect-handshake .arrow-pulse {
  display: flex; gap: 6px;
  color: var(--ik-blue-500);
}
.redirect-handshake .arrow-pulse span {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: pulse-dot 1.2s infinite;
}
.redirect-handshake .arrow-pulse span:nth-child(2) { animation-delay: 0.15s; }
.redirect-handshake .arrow-pulse span:nth-child(3) { animation-delay: 0.30s; }
.redirect-handshake .arrow-pulse span:nth-child(4) { animation-delay: 0.45s; }
@keyframes pulse-dot {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

.redirect-stage h1 {
  margin: 0; font-size: 24px; font-weight: 500; color: var(--fg-1);
  text-align: center;
}
.redirect-stage .sub {
  font-size: 14px; color: var(--fg-2); text-align: center; max-width: 420px;
}

/* ═════════ NNNS — login + ventes + acheter ═════════ */
.nn-stage {
  min-height: 100vh;
  background: var(--nn-bg);
  display: flex; flex-direction: column;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--nn-text);
}

.nn-banner {
  background: var(--nn-yellow);
  height: 56px;
  display: flex; align-items: center;
  padding: 0 32px;
  gap: 32px;
}
.nn-banner .nn-logo {
  font-weight: 900; letter-spacing: -0.02em; font-size: 14px;
  color: var(--nn-black);
  display: inline-flex; align-items: center; gap: 8px;
}
.nn-banner .nn-logo .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--nn-black);
}
.nn-banner .grow { flex: 1; }
.nn-banner .nn-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--nn-black); cursor: pointer; padding: 8px 0;
  text-transform: uppercase;
  text-decoration: none;
}
.nn-banner .nn-link:hover { text-decoration: underline; }
.nn-banner .nn-cta {
  background: var(--nn-black); color: var(--nn-yellow);
  padding: 10px 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; text-transform: uppercase;
  text-decoration: none;
}
.nn-banner .nn-cta:hover { background: #2a2a2a; }

.nn-tabs {
  display: flex; gap: 32px;
  padding: 12px 32px;
  background: #fff;
  border-bottom: 1px solid var(--nn-border);
}
.nn-tabs .nn-tab {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--nn-text-2);
  font-weight: 600;
  padding: 6px 0;
  cursor: pointer;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.nn-tabs .nn-tab.active { color: var(--nn-black); border-bottom-color: var(--nn-yellow); }
.nn-tabs .nn-tab .arrow { color: var(--nn-yellow); }
.nn-tabs .nn-tab.active .arrow { color: var(--nn-yellow); }

/* NNNS hero (Acheter home) */
.nn-hero {
  padding: 64px 32px 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  max-width: 1280px; margin: 0 auto;
  width: 100%;
}
.nn-hero .eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--nn-text-2); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
}
.nn-hero .eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--nn-yellow);
}
.nn-hero h1 {
  font-size: clamp(54px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0 0 24px;
  color: var(--nn-black);
}
.nn-hero h1 .accent { color: var(--nn-yellow); }
.nn-hero .lede {
  font-size: 16px; line-height: 1.55; color: var(--nn-text-2);
  max-width: 460px;
  margin: 0 0 32px;
}
.nn-hero .browse-btn {
  background: var(--nn-black); color: #fff;
  padding: 18px 28px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.10em;
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase;
}
.nn-hero .browse-btn:hover { background: #2a2a2a; }

.nn-stats { display: flex; flex-direction: column; gap: 32px; align-items: flex-end; }
.nn-stats .stat { text-align: right; }
.nn-stats .stat .num {
  font-size: 36px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--nn-black); line-height: 1;
}
.nn-stats .stat .num .pct { color: var(--nn-yellow); }
.nn-stats .stat .lbl {
  font-size: 10px; letter-spacing: 0.10em;
  color: var(--nn-text-2);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

/* Filters block */
.nn-filters {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px 24px;
  width: 100%;
}
.nn-filters .filter-wrap {
  background: #fff;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--nn-border);
}
.nn-filters .row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.nn-filters .row .lab {
  font-size: 10px; letter-spacing: 0.10em;
  color: var(--nn-text-2);
  font-weight: 600; min-width: 64px;
  text-transform: uppercase;
}
.nn-filters .chip {
  padding: 6px 14px; font-size: 12px;
  border: 1px solid var(--nn-border);
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}
.nn-filters .chip:hover { background: var(--nn-bg2); }
.nn-filters .chip.active {
  background: var(--nn-black); color: #fff; border-color: var(--nn-black);
}
.nn-filters .chip.icon { display: inline-flex; align-items: center; gap: 4px; }
.nn-filters .chip.icon .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--nn-yellow);
}

/* Domains grid */
.nn-list {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px 64px;
  width: 100%;
}
.nn-list .count {
  font-size: 11px; letter-spacing: 0.10em;
  color: var(--nn-text-2); font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.nn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--nn-border); border: 1px solid var(--nn-border); }
.nn-card {
  background: #fff;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 28px;
  cursor: pointer;
  position: relative;
  min-height: 180px;
}
.nn-card:hover { background: #FFFEF8; }
.nn-card .name {
  font-size: 26px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--nn-black);
}
.nn-card .name .ext { font-weight: 400; color: var(--nn-text-2); }
.nn-card .price-row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 12px;
}
.nn-card .price {
  font-size: 22px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--nn-black);
}
.nn-card .meta {
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--nn-text-2);
  text-align: right;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
}
.nn-card .badge-hot {
  position: absolute; top: 24px; right: 24px;
  background: var(--nn-yellow);
  color: var(--nn-black);
  padding: 4px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
}
.nn-card.mine {
  background: linear-gradient(180deg, #FFFBE0, #fff);
}
.nn-card.mine .badge-mine {
  position: absolute; top: 24px; right: 24px;
  background: var(--nn-black);
  color: var(--nn-yellow);
  padding: 4px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* NNNS footer */
.nn-footer {
  border-top: 1px solid var(--nn-border);
  padding: 20px 32px;
  display: flex; align-items: center; gap: 32px;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--nn-text-2);
  text-transform: uppercase;
  font-weight: 600;
  background: #fff;
}
.nn-footer .grow { flex: 1; }
.nn-footer .lang-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--nn-border);
  background: #fff;
  font-size: 11px; letter-spacing: 0.06em;
  cursor: pointer;
}
.nn-footer .staging {
  border: 1px solid var(--nn-staging);
  color: var(--nn-staging);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.10em;
}

/* NNNS Login */
.nn-login {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
  display: flex; gap: 64px;
  align-items: center;
}
.nn-login .left { flex: 1; }
.nn-login .left h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.95; margin: 0 0 20px;
  color: var(--nn-black);
}
.nn-login .left h1 .dot { color: var(--nn-yellow); }
.nn-login .left p {
  font-size: 15px; line-height: 1.55;
  color: var(--nn-text-2);
  max-width: 420px; margin: 0;
}
.nn-login .card {
  background: #fff;
  border: 1px solid var(--nn-border);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 24px;
  width: 380px;
  border-radius: 0;
}
.nn-login .card .eyebrow {
  font-size: 11px; letter-spacing: 0.10em;
  color: var(--nn-text-2);
  font-weight: 600; text-transform: uppercase;
}
.nn-login .card h2 {
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--nn-black);
  margin: 0;
}
.nn-login .card .sso-btn {
  background: var(--nn-black); color: #fff;
  padding: 16px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  text-transform: uppercase;
}
.nn-login .card .sso-btn:hover { background: #2a2a2a; }
.nn-login .card .sso-btn .ik-mark {
  width: 18px; height: 18px;
  background: var(--ik-blue-500);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 11px;
  letter-spacing: 0;
}
.nn-login .card .or {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.10em;
  color: var(--nn-text-2);
  font-weight: 600; text-transform: uppercase;
}
.nn-login .card .or::before, .nn-login .card .or::after {
  content: ""; flex: 1; height: 1px; background: var(--nn-border);
}
.nn-login .card .field {
  display: flex; flex-direction: column; gap: 6px;
}
.nn-login .card .field label {
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--nn-text-2);
  font-weight: 600; text-transform: uppercase;
}
.nn-login .card .field input {
  border: 1px solid var(--nn-border);
  padding: 12px 14px;
  font-size: 14px; color: var(--nn-text);
  font-family: inherit;
  outline: none;
  background: var(--nn-bg);
}
.nn-login .card .field input:focus { border-color: var(--nn-black); background: #fff; }
.nn-login .card .alt-link {
  font-size: 13px; color: var(--nn-text-2); text-align: center;
  text-decoration: none;
}
.nn-login .card .alt-link strong { color: var(--nn-black); border-bottom: 1px solid var(--nn-yellow); padding-bottom: 1px; }
.nn-login .card .cancel {
  font-size: 12px; color: var(--nn-text-2);
  border: 0; background: transparent; cursor: pointer; text-align: center;
  padding: 4px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}

/* NNNS — Ventes (espace utilisateur) */
.nn-account {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 32px;
  width: 100%;
  flex: 1;
}
.nn-account .acc-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.nn-account .acc-head h1 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900; letter-spacing: -0.03em;
  margin: 0;
}
.nn-account .acc-head .me {
  display: flex; align-items: center; gap: 12px;
}
.nn-account .acc-head .me .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1px solid var(--nn-border);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.nn-account .acc-head .me .badge img {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover;
}
.nn-account .acc-head .me .logout {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--nn-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--nn-text);
}
.nn-account .acc-head .me .logout [data-lucide] { width: 16px; height: 16px; }

.nn-account .acc-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.nn-account .acc-nav {
  display: flex; flex-direction: column;
  gap: 4px;
}
.nn-account .acc-nav a {
  padding: 8px 4px;
  font-size: 14px; color: var(--nn-text-2);
  cursor: pointer; text-decoration: none;
}
.nn-account .acc-nav a:hover { color: var(--nn-text); }
.nn-account .acc-nav a.active {
  color: var(--nn-black); font-weight: 600;
}
.nn-account .acc-nav .indent { padding-left: 16px; font-size: 13px; }
.nn-account .acc-nav .indent::before { content: "└ "; color: var(--nn-text-2); }

.nn-account .panel {
  background: #fff;
  border: 1px solid var(--nn-border);
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  border-radius: 12px;
}
.nn-account .panel h3 {
  margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--nn-black);
}
.nn-account .seg {
  display: inline-flex; gap: 8px;
}
.nn-account .seg .seg-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--nn-border);
  font-size: 12px;
  cursor: pointer;
  color: var(--nn-text);
  font-weight: 500;
}
.nn-account .seg .seg-pill.active { background: var(--nn-black); color: #fff; border-color: var(--nn-black); }
.nn-account .input-search {
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--nn-text);
  border-radius: 999px;
  outline: none;
  width: 100%;
}
.nn-account .new-line {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--nn-text);
}
.nn-account .new-line a {
  color: var(--nn-black); font-weight: 700; text-decoration: underline;
  text-decoration-color: var(--nn-yellow); text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  cursor: pointer;
}
.nn-account .empty-line {
  font-size: 14px; color: var(--nn-text);
  margin-top: 12px;
}

.nn-account .listing {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.nn-account .listing-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 14px;
  border: 1px solid var(--nn-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nn-account .listing-row:hover { background: #FFFEF8; }
.nn-account .listing-row.selected { border-color: var(--nn-black); }
.nn-account .listing-row .dom { font-weight: 700; color: var(--nn-black); }
.nn-account .listing-row .dom .ext { font-weight: 400; color: var(--nn-text-2); }
.nn-account .listing-row .grow { flex: 1; }
.nn-account .listing-row .price-tag {
  font-size: 13px; font-weight: 700; color: var(--nn-black);
}
.nn-account .listing-row .status {
  font-size: 10px; letter-spacing: 0.08em;
  background: var(--nn-yellow);
  color: var(--nn-black);
  padding: 4px 10px;
  font-weight: 700; text-transform: uppercase;
}
.nn-account .listing-row .status.draft {
  background: #E8E8E3; color: var(--nn-text-2);
}

.nn-account .panel.detail {
  background: #fff;
  border: 1px solid var(--nn-border);
  padding: 28px;
  border-radius: 12px;
}
.nn-account .panel.detail .empty {
  border: 1px solid var(--nn-border);
  border-radius: 10px;
  padding: 28px;
  font-size: 14px; color: var(--nn-text-2);
  text-align: center;
}
.nn-account .panel.detail h2 {
  margin: 0 0 16px;
  font-size: 32px; font-weight: 900; letter-spacing: -0.03em;
}
.nn-account .panel.detail h2 .ext { font-weight: 400; color: var(--nn-text-2); }
.nn-account .detail-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 24px;
}
.nn-account .detail-stats .stat {
  border: 1px solid var(--nn-border); padding: 16px; border-radius: 8px;
}
.nn-account .detail-stats .stat .lbl {
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--nn-text-2);
  font-weight: 600; text-transform: uppercase;
  margin-bottom: 8px;
}
.nn-account .detail-stats .stat .val {
  font-size: 22px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--nn-black);
}
.nn-account .detail-stats .stat .val.muted { color: var(--nn-text-2); font-weight: 700; font-size: 18px; }

.nn-account .detail-meta {
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}
.nn-account .detail-meta .row { display: flex; align-items: center; gap: 12px; }
.nn-account .detail-meta .row .lbl {
  flex: 0 0 130px;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--nn-text-2);
  font-weight: 600; text-transform: uppercase;
}
.nn-account .detail-meta .row .val { color: var(--nn-text); }
.nn-account .detail-meta .row .val .check {
  display: inline-flex; align-items: center; gap: 6px;
  color: #2A8A4A; font-weight: 600;
}
.nn-account .detail-meta .row .val .check [data-lucide] { width: 14px; height: 14px; }

.nn-account .detail-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.nn-account .nn-btn {
  background: var(--nn-black); color: #fff;
  padding: 12px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  border: 0; cursor: pointer; text-transform: uppercase;
}
.nn-account .nn-btn.secondary {
  background: #fff; color: var(--nn-black); border: 1px solid var(--nn-border);
}
.nn-account .nn-btn.secondary:hover { background: var(--nn-bg2); }
.nn-account .nn-btn:hover { background: #2a2a2a; }
.nn-account .nn-btn.primary { background: var(--nn-yellow); color: var(--nn-black); display: inline-flex; align-items: center; gap: 8px; }
.nn-account .nn-btn.primary:hover { background: #FFE85B; }
.nn-account .nn-btn.primary [data-lucide] { width: 14px; height: 14px; }
.nn-account .nn-btn[disabled] { opacity: 0.45; cursor: not-allowed; }
.nn-account .nn-btn.primary[disabled]:hover { background: var(--nn-yellow); }

/* Panel head — title + primary action on the same row */
.nn-account .panel .panel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 4px;
}

/* Empty state shown when user has no listings */
.nn-account .empty-state {
  border: 1px dashed var(--nn-border);
  background: var(--nn-bg);
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 8px;
}
.nn-account .empty-state .empty-illu svg { width: 120px; height: 80px; }
.nn-account .empty-state h4 {
  margin: 0; font-size: 16px; font-weight: 700; color: var(--nn-black);
  letter-spacing: -0.01em;
}
.nn-account .empty-state p {
  margin: 0; font-size: 13px; color: var(--nn-text-2); line-height: 1.55;
  max-width: 360px;
}
.nn-account .empty-state .nn-btn { margin-top: 8px; }

/* Hint card on the detail panel when nothing is selected */
.nn-account .hint-card {
  display: flex; flex-direction: column; gap: 12px;
  text-align: left; padding: 0; max-width: 280px;
}
.nn-account .hint-card .hint-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: var(--nn-text-2); line-height: 1.5;
}
.nn-account .hint-card .hint-row [data-lucide] {
  width: 14px; height: 14px; color: var(--nn-black);
  flex: 0 0 14px; margin-top: 2px;
}
.nn-account .hint-card .hint-row strong { color: var(--nn-black); font-weight: 700; }

/* Drawer — domain picker */
.nn-drawer-back {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.45);
  display: flex; justify-content: flex-end;
  z-index: 300;
}
.nn-drawer {
  width: min(560px, 100%);
  background: #fff;
  display: flex; flex-direction: column;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  animation: drawer-in 220ms cubic-bezier(.2,.7,.2,1);
}
@keyframes drawer-in { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.nn-dr-head {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--nn-border);
}
.nn-dr-head h3 {
  margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--nn-black);
}
.nn-dr-head .nn-dr-sub {
  margin: 6px 0 0; font-size: 13px; color: var(--nn-text-2); line-height: 1.5;
}
.nn-dr-head .m-close {
  width: 32px; height: 32px; border-radius: 4px;
  background: transparent; border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--nn-text-2);
  flex: 0 0 32px;
}
.nn-dr-head .m-close:hover { background: var(--nn-bg2); }

.nn-dr-body {
  flex: 1; overflow-y: auto;
  padding: 18px 24px;
  display: flex; flex-direction: column; gap: 16px;
}

/* Source pill — "Synchronisé depuis Infomaniak" */
.nn-source-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #F4F6FD;
  border: 1px solid #DCE3F4;
  border-radius: 8px;
}
.nn-source-pill .ik-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--ik-blue-500, #0099FF);
  flex: 0 0 28px;
  position: relative;
}
.nn-source-pill .ik-mark::after {
  content: "ik"; color: #fff; font-weight: 800; font-size: 11px;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.nn-source-pill > div:nth-child(2) { display: flex; flex-direction: column; line-height: 1.35; }
.nn-source-pill strong { font-size: 13px; color: var(--nn-black); font-weight: 700; }
.nn-source-pill span { font-size: 11px; color: var(--nn-text-2); }
.nn-source-pill .grow { flex: 1; }
.nn-source-pill .sync-state {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--nn-text-2);
  padding: 4px 10px; background: #fff; border-radius: 999px;
  border: 1px solid var(--nn-border);
}
.nn-source-pill .sync-state [data-lucide] { width: 12px; height: 12px; }

/* Search row in drawer */
.nn-dr-body .search-row {
  position: relative;
}
.nn-dr-body .search-row [data-lucide] {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--nn-text-2);
}
.nn-dr-body .search-row .input-search {
  width: 100%;
  padding: 12px 14px 12px 38px;
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  border-radius: 999px;
  font-size: 13px; font-family: inherit;
  color: var(--nn-text);
  outline: none;
}

/* Domain picker rows */
.dom-picker { display: flex; flex-direction: column; gap: 8px; }
.dom-pick-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--nn-border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 140ms, background 140ms;
}
.dom-pick-row:hover { background: var(--nn-bg); }
.dom-pick-row.selected { border-color: var(--nn-black); background: #FFFEF8; box-shadow: 0 0 0 1px var(--nn-black); }
.dom-pick-row .radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--nn-border);
  flex: 0 0 18px;
  position: relative;
  background: #fff;
}
.dom-pick-row.selected .radio { border-color: var(--nn-black); }
.dom-pick-row.selected .radio::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--nn-black);
}
.dom-pick-row .dpr-name {
  display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0;
}
.dom-pick-row .dpr-name strong {
  font-size: 14px; font-weight: 700; color: var(--nn-black); letter-spacing: -0.01em;
}
.dom-pick-row .dpr-name strong .ext { font-weight: 400; color: var(--nn-text-2); }
.dom-pick-row .dpr-sub { font-size: 11px; color: var(--nn-text-2); }
.dom-pick-row .dpr-tag {
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700;
  background: var(--nn-yellow);
  color: var(--nn-black);
  padding: 4px 10px;
  white-space: nowrap;
}

/* Inline help under picker */
.nn-help {
  display: flex; gap: 10px;
  padding: 12px 14px;
  background: var(--nn-bg);
  border-radius: 8px;
  font-size: 12px; color: var(--nn-text-2); line-height: 1.5;
}
.nn-help [data-lucide] { width: 14px; height: 14px; flex: 0 0 14px; margin-top: 2px; color: var(--nn-text-2); }
.nn-help strong { color: var(--nn-black); }
.nn-help a { color: var(--nn-black); font-weight: 700; cursor: pointer;
  text-decoration: underline; text-decoration-color: var(--nn-yellow);
  text-underline-offset: 3px; text-decoration-thickness: 2px;
}

/* Drawer foot */
.nn-dr-foot {
  display: flex; justify-content: flex-end; gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--nn-border);
  background: var(--nn-bg);
}
.nn-dr-foot .nn-btn { padding: 12px 20px; }

/* Toast */
.toast {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--nn-black);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
  border-left: 3px solid var(--nn-yellow);
  animation: toast-in 240ms var(--ease-standard);
}
.toast [data-lucide] { width: 16px; height: 16px; color: var(--nn-yellow); }
@keyframes toast-in {
  from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* Step jumper (proto chrome) */
.proto-steps {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--ik-gray-700);
  color: #fff;
  padding: 6px;
  border-radius: 999px;
  display: flex; gap: 4px;
  z-index: 90;
  box-shadow: var(--shadow-3);
  font-size: 12px;
}
.proto-steps .ps {
  width: 30px; height: 30px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: background 180ms var(--ease-standard);
}
.proto-steps .ps:hover { background: rgba(255,255,255,0.1); color: #fff; }
.proto-steps .ps.active {
  background: var(--ik-blue-500); color: #fff;
}
.proto-steps .label {
  display: flex; align-items: center;
  padding: 0 12px;
  color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hide scrollbars on horizontal scrolls */
@media (max-width: 1024px) {
  .ksuite-cards, .product-grid, .connect-cards, .opts-grid, .nn-grid {
    grid-template-columns: 1fr 1fr;
  }
  .options-actions-row { grid-template-columns: 1fr; }
  .ik-tabs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .ksuite-cards, .product-grid, .connect-cards, .opts-grid, .nn-grid {
    grid-template-columns: 1fr;
  }
  .ik-stage { grid-template-columns: 56px 1fr; }
  .ik-stage > .ik-submenu { display: none; }
  .nn-hero { grid-template-columns: 1fr; }
  .nn-stats { flex-direction: row; gap: 24px; align-items: flex-start; }
  .nn-account .acc-grid { grid-template-columns: 1fr; }
  .nn-login { flex-direction: column; }
  .nn-login .card { width: 100%; }
}


/* ═════════ SALE INVITE BANNER (below domain header) ═════════ */
.sale-invite {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 44px 16px 20px; /* right pad reserved for × button */
  margin: 16px 0 0;
  background: #fff;
  border: 1px solid var(--ik-gray-200);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.sale-invite > .ic {
  flex: 0 0 22px; width: 22px; height: 22px;
  color: #E0316E; /* pink lightbulb */
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.sale-invite > .ic [data-lucide] { width: 20px; height: 20px; }
.sale-invite .body { flex: 1; min-width: 0; }
.sale-invite .body strong {
  display: block; font-size: 14px; font-weight: 600; color: var(--fg-1);
  margin-bottom: 4px;
}
.sale-invite .body p {
  margin: 0; font-size: 13px; color: var(--fg-2); line-height: 1.5;
  max-width: 640px;
}
.sale-invite .si-actions {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.sale-invite .si-link {
  background: transparent; border: 0; padding: 8px 10px;
  color: var(--ik-blue-500); font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
}
.sale-invite .si-link:hover { color: var(--ik-blue-700); }
.sale-invite .si-primary {
  background: var(--ik-blue-500); color: #fff;
  border: 0; border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: background 0.12s;
}
.sale-invite .si-primary:hover { background: var(--ik-blue-700); }
.sale-invite .si-dismiss {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px; border-radius: 4px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--fg-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.sale-invite .si-dismiss:hover { background: var(--ik-gray-100); color: var(--fg-1); }
.sale-invite .si-dismiss [data-lucide] { width: 16px; height: 16px; }

/* "Nouveau" pink tag inside the domains-list invite banner */
.sale-invite .nv-tag {
  display: inline-block;
  background: #E0316E; color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 999px;
  margin-right: 8px; vertical-align: 1px;
}

/* ═════════ SALE STATUS BLOCK (in domain header, "live" state) ═════════ */
.dom-header .sale-status-block {
  display: inline-flex; align-items: center; gap: 14px;
  margin-left: auto; align-self: center;
  background: #fff;
  border: 1px solid var(--ik-gray-200);
  border-radius: 10px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.dom-header .sale-status-block .lbl {
  font-size: 14px; color: var(--fg-1); font-weight: 500;
  white-space: nowrap;
}
.dom-header .sale-status-block .ssb-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ik-blue-500); color: #fff;
  border: 0; border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s;
}
.dom-header .sale-status-block .ssb-btn:hover { background: var(--ik-blue-700); }
.dom-header .sale-status-block .ssb-btn [data-lucide] { width: 14px; height: 14px; }
.dom-header .sale-status-block .ssb-secondary {
  background: transparent;
  border: 0;
  color: var(--ik-blue-500);
  font-size: 14px; font-weight: 500;
  padding: 8px 10px;
  cursor: pointer;
  white-space: nowrap;
}
.dom-header .sale-status-block .ssb-secondary:hover { color: var(--ik-blue-700); }

.dom-header .sale-status-block + .header-cta { margin-left: 0; }
  padding: 10px 12px 10px 16px;
  background: #fff;
  border: 1px solid var(--ik-gray-300);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.dom-header .sale-status-block + .header-cta { margin-left: 0; }

/* ═════════ "LIVE" CTA in actions column — same style as other links ═════════ */
.actions-card a.live-action {
  font-weight: 500;
  border-top: 1px solid var(--ik-gray-300);
  margin-top: 8px;
  padding-top: 16px;
  color: var(--ik-blue-500);
}
.actions-card a.live-action:hover { color: var(--ik-blue-700); }
.actions-card a.live-action [data-lucide] { width: 16px; height: 16px; }


/* ═════════════════════════════════════════════════════════════════════
   OAUTH SCREEN — Infomaniak authorization consent
   ═════════════════════════════════════════════════════════════════════ */
.oauth-stage {
  min-height: 100vh;
  background: var(--ik-gray-100);
  display: flex; flex-direction: column;
}
.oauth-header {
  background: #fff;
  border-bottom: 1px solid var(--ik-gray-200);
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.oauth-header .oauth-logo { height: 28px; }
.oauth-header .oauth-lang {
  background: #fff;
  border: 1px solid var(--ik-gray-300);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px; color: var(--fg-1);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.oauth-header .oauth-lang [data-lucide] { width: 14px; height: 14px; }

.oauth-main {
  flex: 1;
  padding: 64px 24px 80px;
  display: flex; flex-direction: column; align-items: center;
}
.oauth-title {
  font-family: var(--ff-display, var(--ff-base));
  font-size: 28px; font-weight: 500; color: var(--fg-1);
  margin: 0 0 32px; text-align: center;
  letter-spacing: -0.01em;
}

.oauth-card {
  width: 100%; max-width: 720px;
  background: #fff;
  border: 1px solid var(--ik-gray-200);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  padding: 32px;
}
.oauth-user {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--ik-gray-200);
  border-radius: 10px;
  margin-bottom: 28px;
}
.oauth-user-info { display: flex; align-items: center; gap: 14px; }
.oauth-user-info .oauth-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.oauth-user-text { display: flex; flex-direction: column; gap: 2px; }
.oauth-user-text strong { font-size: 14px; color: var(--fg-1); font-weight: 600; }
.oauth-user-text span { font-size: 13px; color: var(--fg-2); }
.oauth-switch {
  font-size: 14px; color: var(--ik-blue-500); cursor: pointer; font-weight: 500;
}
.oauth-switch:hover { color: var(--ik-blue-700); }

.oauth-scopes-title {
  font-size: 14px; font-weight: 600; color: var(--fg-1);
  margin-bottom: 14px;
}
.oauth-scopes-list {
  margin: 0 0 32px;
  padding-left: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.oauth-scopes-list li {
  font-size: 14px; color: var(--fg-1); line-height: 1.5;
  list-style: disc;
}
.oauth-scopes-list li::marker { color: var(--fg-2); }

.oauth-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.oauth-btn {
  border: 0; cursor: pointer;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 14px; font-weight: 500;
  color: #fff;
  min-width: 110px;
}
.oauth-btn.refuse  { background: #ED5447; }
.oauth-btn.refuse:hover  { background: #D6473C; }
.oauth-btn.accept  { background: var(--ik-blue-500); }
.oauth-btn.accept:hover  { background: var(--ik-blue-700); }


/* ═════════════════════════════════════════════════════════════════════
   CONFIGURE SCREEN — NNNS sale configuration (price, parking, etc.)
   ═════════════════════════════════════════════════════════════════════ */
.nn-config {
  max-width: 1280px; margin: 0 auto;
  padding: 40px 32px 80px;
  flex: 1;
  color: var(--nn-text);
}
.cfg-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--nn-text-2);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
  margin-bottom: 28px;
}
.cfg-breadcrumb a { color: var(--nn-text-2); cursor: pointer; }
.cfg-breadcrumb a:hover { color: var(--nn-black); }
.cfg-breadcrumb .curr { color: var(--nn-black); }
.cfg-breadcrumb [data-lucide] { width: 12px; height: 12px; }

.cfg-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  color: var(--nn-text-2); text-transform: uppercase;
  margin-bottom: 14px;
}

.cfg-header {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--nn-border);
}
.cfg-header h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--nn-black);
}
.cfg-header h1 strong { font-weight: 900; }
.cfg-header h1 .ext { font-weight: 400; color: var(--nn-text-2); }
.cfg-header .cfg-sub {
  font-size: 14px; color: var(--nn-text-2); line-height: 1.6;
  max-width: 520px; margin: 0;
}

.cfg-domain-card {
  background: #fff;
  border: 1px solid var(--nn-border);
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.cfg-domain-card .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 13px; color: var(--nn-text);
}
.cfg-domain-card .row .lbl {
  font-size: 11px; letter-spacing: 0.08em; font-weight: 600;
  color: var(--nn-text-2); text-transform: uppercase;
}
.cfg-domain-card .row strong {
  font-size: 18px; color: var(--nn-black); font-weight: 900;
  letter-spacing: -0.01em;
}
.cfg-domain-card .row strong .ext { font-weight: 400; color: var(--nn-text-2); }
.cfg-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 4px 10px;
  background: #F4FBE8;
  border: 1px solid #C9E5A5;
  color: #4D7A1F;
  border-radius: 999px;
}
.cfg-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6BAA2C;
}
.cfg-change {
  margin-top: 4px;
  font-size: 13px; font-weight: 700; color: var(--nn-black);
  text-decoration: underline;
  text-decoration-color: var(--nn-yellow);
  text-underline-offset: 4px; text-decoration-thickness: 3px;
  cursor: pointer;
}

.cfg-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cfg-form { display: flex; flex-direction: column; gap: 24px; }

.cfg-section {
  background: #fff;
  border: 1px solid var(--nn-border);
  border-radius: 12px;
  padding: 28px;
}
.cfg-section-head {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--nn-border);
  margin-bottom: 24px;
}
.cfg-section-head .num {
  flex: 0 0 36px; height: 36px;
  border-radius: 50%;
  background: var(--nn-yellow);
  color: var(--nn-black);
  font-size: 14px; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
}
.cfg-section-head h3 {
  margin: 0 0 4px;
  font-size: 18px; font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--nn-black);
}
.cfg-section-head p {
  margin: 0; font-size: 13px; color: var(--nn-text-2); line-height: 1.55;
}

.cfg-fields { display: flex; flex-direction: column; gap: 18px; }
.cfg-row.two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.cfg-field { display: flex; flex-direction: column; gap: 6px; }
.cfg-field label {
  font-size: 12px; font-weight: 700; color: var(--nn-black);
  letter-spacing: 0.02em;
}
.cfg-field label .opt {
  font-weight: 400; color: var(--nn-text-2);
}
.cfg-field .cfg-hint {
  font-size: 12px; color: var(--nn-text-2); line-height: 1.5;
}

.cfg-input-wrap, .cfg-select-wrap {
  display: flex; align-items: center;
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  border-radius: 8px;
  overflow: hidden;
}
.cfg-input-wrap:focus-within, .cfg-select-wrap:focus-within {
  border-color: var(--nn-black); background: #fff;
}
.cfg-input-wrap .cfg-prefix {
  padding: 0 12px;
  font-size: 13px; font-weight: 700; color: var(--nn-text-2);
  border-right: 1px solid var(--nn-border);
  height: 100%; display: inline-flex; align-items: center;
  align-self: stretch;
}
.cfg-input-wrap input,
.cfg-field textarea,
.cfg-select-wrap select {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  padding: 12px 14px;
  font-size: 14px; color: var(--nn-black); font-family: inherit;
}
.cfg-field textarea {
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  border-radius: 8px;
  resize: vertical; min-height: 96px;
  line-height: 1.55;
}
.cfg-field textarea:focus { border-color: var(--nn-black); background: #fff; outline: 0; }
.cfg-select-wrap { padding-right: 12px; }
.cfg-select-wrap select { appearance: none; cursor: pointer; padding-right: 8px; }
.cfg-select-wrap [data-lucide] { width: 16px; height: 16px; color: var(--nn-text-2); }

.cfg-toggle-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 16px;
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  border-radius: 10px;
}
.cfg-toggle-row > div { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cfg-toggle-row strong { font-size: 14px; color: var(--nn-black); font-weight: 700; }
.cfg-toggle-row span { font-size: 12px; color: var(--nn-text-2); line-height: 1.5; }

.cfg-switch {
  position: relative;
  display: inline-block;
  width: 42px; height: 24px;
  cursor: pointer;
  flex-shrink: 0;
}
.cfg-switch input { opacity: 0; width: 0; height: 0; }
.cfg-switch .track {
  position: absolute; inset: 0;
  background: #D6D6D2; border-radius: 999px;
  transition: background 0.15s;
}
.cfg-switch .track::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  transition: transform 0.15s;
}
.cfg-switch input:checked + .track { background: var(--nn-black); }
.cfg-switch input:checked + .track::after { transform: translateX(18px); }

.cfg-radio-group { display: flex; flex-direction: column; gap: 10px; }
.cfg-radio {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.cfg-radio input { display: none; }
.cfg-radio > div { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cfg-radio strong { font-size: 14px; color: var(--nn-black); font-weight: 700; }
.cfg-radio span { font-size: 12px; color: var(--nn-text-2); line-height: 1.5; }
.cfg-radio-mark {
  flex: 0 0 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #C7C7C0;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.12s;
}
.cfg-radio.selected {
  border-color: var(--nn-black);
  background: #fff;
}
.cfg-radio.selected .cfg-radio-mark {
  border-color: var(--nn-black);
}
.cfg-radio.selected .cfg-radio-mark::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--nn-black);
  border-radius: 50%;
}

.cfg-tag-field { display: flex; flex-direction: column; gap: 6px; }
.cfg-tag-field label {
  font-size: 12px; font-weight: 700; color: var(--nn-black);
}
.cfg-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 8px 10px;
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  border-radius: 8px;
  min-height: 46px;
  align-items: center;
}
.cfg-tags input {
  flex: 1; min-width: 80px;
  border: 0; outline: 0; background: transparent;
  font-size: 13px; color: var(--nn-black); font-family: inherit;
  padding: 4px 0;
}
.cfg-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--nn-border);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--nn-black);
}
.cfg-tag [data-lucide] {
  width: 12px; height: 12px; color: var(--nn-text-2); cursor: pointer;
}

.cfg-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 8px;
}
.cfg-foot .grow { flex: 1; }
.cfg-foot .nn-btn { padding: 14px 22px; font-size: 13px; }
.cfg-foot .nn-btn.ghost {
  background: transparent; color: var(--nn-text);
  border: 1px solid transparent;
}
.cfg-foot .nn-btn.ghost:hover { background: var(--nn-bg); border-color: var(--nn-border); }

/* RIGHT side preview */
.cfg-side { position: sticky; top: 24px; }
.cfg-preview {
  display: flex; flex-direction: column; gap: 24px;
}
.cfg-preview-card {
  position: relative;
  background: var(--nn-black); color: #fff;
  border-radius: 14px;
  padding: 28px 24px 24px;
  overflow: hidden;
}
.cfg-preview-card .badge-hot {
  position: absolute; top: 14px; right: 14px;
  background: var(--nn-yellow); color: var(--nn-black);
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.cfg-preview-card .name {
  font-size: 32px; font-weight: 900; letter-spacing: -0.02em;
  line-height: 1.05;
}
.cfg-preview-card .name .ext { color: var(--nn-yellow); font-weight: 400; }
.cfg-preview-card .price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-top: 24px;
}
.cfg-preview-card .price {
  font-size: 22px; font-weight: 900; letter-spacing: -0.01em;
}
.cfg-preview-card .meta {
  font-size: 11px; color: rgba(255,255,255,0.65);
  text-align: right; line-height: 1.4;
}
.cfg-preview-card .cfg-pv-cta {
  margin-top: 20px;
  width: 100%;
  background: var(--nn-yellow); color: var(--nn-black);
  border: 0; border-radius: 8px;
  padding: 12px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cfg-summary {
  background: #fff;
  border: 1px solid var(--nn-border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.cfg-summary-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--nn-text-2);
}
.cfg-summary-row strong {
  color: var(--nn-black); font-weight: 700;
}
.cfg-summary-row.total {
  padding-top: 10px;
  border-top: 1px solid var(--nn-border);
  font-size: 14px;
  color: var(--nn-black);
}
.cfg-summary-row.total strong { font-size: 16px; }

.cfg-tips {
  display: flex; flex-direction: column; gap: 10px;
}
.cfg-tips .tip {
  display: flex; gap: 10px;
  padding: 12px 14px;
  background: #FFFEF4;
  border: 1px solid #F0E8B6;
  border-radius: 10px;
  font-size: 12px; color: var(--nn-text); line-height: 1.5;
}
.cfg-tips .tip [data-lucide] {
  width: 16px; height: 16px; color: var(--nn-black);
  flex-shrink: 0; margin-top: 1px;
}
.cfg-tips .tip strong { color: var(--nn-black); font-weight: 700; }

@media (max-width: 1024px) {
  .cfg-header { grid-template-columns: 1fr; }
  .cfg-grid { grid-template-columns: 1fr; }
  .cfg-side { position: static; }
}
@media (max-width: 640px) {
  .cfg-row.two { grid-template-columns: 1fr; }
}


/* ═════════════════════════════════════════════
   SCREEN 3c — KNOWLEDGE BASE FAQ
   Mirrors infomaniak.com public "Base de connaissances"
   ═════════════════════════════════════════════ */
.kb-screen {
  display: block;
  background: #E5E7E9;
  min-height: 100vh;
  font-family: var(--font-sans, 'Inter', sans-serif);
  color: #2C3137;
}

/* Top nav (public-site, white) */
.kb-topnav {
  background: #fff;
  border-bottom: 1px solid #E5E7E9;
}
.kb-topnav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 18px 32px;
}
.kb-logo {
  font-size: 24px; font-weight: 700; color: var(--ik-blue-500);
  letter-spacing: -0.01em;
  cursor: pointer;
}
.kb-nav {
  display: inline-flex; align-items: center; gap: 24px;
  margin-left: 12px;
}
.kb-nav-item {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 15px; color: #4A4F55; cursor: pointer;
}
.kb-nav-item [data-lucide] { width: 14px; height: 14px; }
.kb-nav-item:hover { color: var(--ik-blue-500); }
.kb-topnav-right {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 18px;
}
.kb-icon-btn {
  background: transparent; border: 0; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #4A4F55;
}
.kb-icon-btn [data-lucide] { width: 18px; height: 18px; }
.kb-cta {
  background: var(--ik-blue-500); color: #fff;
  border: 0; border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background 0.12s;
}
.kb-cta:hover { background: var(--ik-blue-700); }
.kb-link {
  color: var(--ik-blue-500);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.kb-link:hover { color: var(--ik-blue-700); }

/* Hero */
.kb-hero {
  text-align: center;
  padding: 64px 32px 40px;
}
.kb-hero h1 {
  margin: 0 0 16px;
  font-size: 56px; font-weight: 400;
  color: #5A5F65; letter-spacing: -0.01em;
}
.kb-hero p {
  margin: 0;
  font-size: 16px; color: #5A5F65;
}

/* Container */
.kb-container {
  max-width: 960px; margin: 0 auto;
  padding: 0 32px 64px;
}

/* Breadcrumb */
.kb-crumbs {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-size: 16px;
}
.kb-crumbs a {
  color: var(--ik-blue-500); cursor: pointer; font-weight: 500;
}
.kb-crumbs a:hover { color: var(--ik-blue-700); }
.kb-crumbs [data-lucide] {
  width: 14px; height: 14px; color: #9CA0A6;
}

/* Search */
.kb-search {
  display: flex; gap: 0;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.kb-search input {
  flex: 1;
  border: 1px solid #fff;
  background: #fff;
  padding: 16px 20px;
  font-size: 15px;
  font-family: inherit;
  color: #2C3137;
  outline: none;
}
.kb-search input::placeholder { color: #9CA0A6; }
.kb-search-btn {
  background: var(--ik-blue-500); color: #fff;
  border: 0; padding: 0 36px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.12s;
}
.kb-search-btn:hover { background: var(--ik-blue-700); }

/* Category filter */
.kb-filter { margin-bottom: 24px; }
.kb-select {
  background: #fff; border: 1px solid #DDE0E3;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px; color: #4A4F55;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 24px;
  min-width: 220px;
  justify-content: space-between;
  font-family: inherit;
}
.kb-select [data-lucide] { width: 16px; height: 16px; color: #9CA0A6; }

/* FAQ card */
.kb-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.kb-card-head {
  background: #F2F4F6;
  border-bottom: 1px solid #E5E7E9;
  padding: 18px 28px;
  display: flex; align-items: center; gap: 16px;
}
.kb-card-title {
  flex: 1;
  color: var(--ik-blue-500);
  font-size: 16px; font-weight: 500;
  cursor: pointer;
}
.kb-card-title:hover { color: var(--ik-blue-700); }
.kb-card-icons { display: inline-flex; align-items: center; gap: 8px; }
.kb-card-icons .kb-prod-icon { width: 22px; height: 22px; opacity: 0.9; }

.kb-card-body { padding: 32px 36px; }
.kb-card-body .kb-lede {
  font-size: 15px; color: #4A4F55; line-height: 1.65;
  margin: 0 0 28px;
}
.kb-card-body .kb-lede strong { color: #2C3137; font-weight: 600; }

.kb-card-body h2 {
  font-size: 26px; font-weight: 400;
  color: #2C3137; letter-spacing: -0.01em;
  margin: 36px 0 16px;
}
.kb-card-body h2:first-of-type { margin-top: 12px; }
.kb-card-body h3 {
  font-size: 19px; font-weight: 400;
  color: #2C3137;
  margin: 28px 0 12px;
}

.kb-card-body .kb-bullets {
  margin: 0 0 8px;
  padding: 0 0 0 22px;
  font-size: 15px; color: #4A4F55; line-height: 1.65;
  list-style: none;
}
.kb-card-body .kb-bullets > li {
  position: relative;
  padding-left: 4px;
  margin-bottom: 10px;
}
.kb-card-body .kb-bullets > li::before {
  content: '';
  position: absolute;
  left: -18px; top: 11px;
  width: 6px; height: 6px;
  background: #2C3137;
  border-radius: 50%;
}
.kb-card-body .kb-bullets .kb-bullets {
  margin-top: 10px;
  list-style: none;
}
.kb-card-body .kb-bullets .kb-bullets > li {
  margin-bottom: 8px;
}
.kb-card-body .kb-bullets .kb-bullets > li::before {
  background: transparent;
  border: 1.5px solid #2C3137;
  width: 7px; height: 7px;
}
.kb-card-body strong { color: #2C3137; font-weight: 600; }
.kb-card-body em {
  font-style: normal; font-weight: 600; color: #2C3137;
}

.kb-cta-block {
  margin-top: 36px;
  padding: 20px 24px;
  background: #F2F4F6;
  border-radius: 4px;
  border-left: 3px solid var(--ik-blue-500);
}
.kb-cta-block strong {
  display: block;
  font-size: 15px; font-weight: 600; color: #2C3137;
  margin-bottom: 4px;
}
.kb-cta-block p {
  margin: 0;
  font-size: 14px; color: #5A5F65; line-height: 1.5;
}

/* Footer back link */
.kb-foot {
  margin-top: 28px;
  text-align: left;
}
.kb-foot a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ik-blue-500); cursor: pointer;
  font-size: 14px; font-weight: 500;
}
.kb-foot a [data-lucide] { width: 16px; height: 16px; }
.kb-foot a:hover { color: var(--ik-blue-700); }


/* ═════════════════════════════════════════════
   SCREEN MAIL — Infomaniak transactional e-mail
   Light envelope header + dark editorial body
   ═════════════════════════════════════════════ */
.mail-stage {
  display: block;
  min-height: 100vh;
  background: #0F141E;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

/* Light envelope meta at top */
.mail-envelope {
  background: #fff;
  padding: 18px 32px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #E5E7E9;
}
.mail-envelope .me-left {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: #6B7280;
  line-height: 1.5;
}
.mail-envelope .me-from strong { color: #2C3137; font-weight: 600; font-size: 13px; }
.mail-envelope .me-subject { color: #2C3137; font-size: 12px; font-weight: 400; margin-bottom: 4px; }
.mail-envelope .me-row { display: flex; align-items: baseline; gap: 8px; }
.mail-envelope .me-row .me-key { color: #2C3137; font-weight: 600; min-width: 56px; }
.mail-envelope .me-row .me-val { color: #2C3137; }
.mail-envelope .me-right { font-size: 12px; color: #6B7280; white-space: nowrap; }

/* Dark email body */
.mail-body {
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(11,99,255,0.25) 0%, rgba(11,99,255,0) 70%),
    #0F141E;
  padding: 48px 24px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.mail-card {
  width: 100%;
  max-width: 560px;
  color: #E6E8EC;
  text-align: center;
  display: flex; flex-direction: column; gap: 0;
  padding: 0 8px;
}

.mail-brand {
  display: inline-flex; align-items: center; gap: 12px;
  justify-content: center;
  margin: 0 auto 36px;
}
.mail-logo-pill {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, #0098FF, #0072CE);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
  font-family: 'Inter', system-ui, sans-serif;
}
.mail-brand-text {
  font-size: 18px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 8px;
}
.mail-brand-divider { color: #6B7280; font-weight: 400; }
.mail-brand-nn {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FFD400;
}

.mail-title {
  margin: 0 0 28px;
  font-size: 28px; font-weight: 600;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}
.mail-title em {
  font-style: italic; font-weight: 600;
  color: #fff;
}

.mail-lede {
  margin: 0 0 20px;
  font-size: 14px; line-height: 1.7;
  color: #A8AEBB;
  text-align: left;
}
.mail-lede strong { color: #fff; font-weight: 600; }

.mail-domains-list {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  text-align: left;
}
.mail-domains-list .mail-domains-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 10px;
}
.mail-domains-list ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.mail-domains-list li {
  font-size: 14px; font-weight: 500; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.mail-domains-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: #0098FF;
  flex-shrink: 0;
}

.mail-sub {
  margin: 8px 0 16px;
  font-size: 14px; line-height: 1.65;
  color: #A8AEBB;
  text-align: left;
}

/* Step rows */
.mail-steps {
  display: flex; flex-direction: column; gap: 14px;
  text-align: left;
  margin: 0 0 32px;
}
.mail-step {
  display: flex; gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}
.mail-step .ms-num {
  flex: 0 0 36px;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 4px;
}
.mail-step .ms-num .ms-n {
  width: 24px; height: 24px; border-radius: 50%;
  background: #0098FF;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.mail-step .ms-num [data-lucide] {
  width: 14px; height: 14px;
  color: #6B7280;
  margin-top: 8px;
}
.mail-step .ms-body strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.mail-step .ms-body p {
  margin: 0;
  font-size: 13px; line-height: 1.65;
  color: #A8AEBB;
}
.mail-step .ms-body strong + p strong { color: #fff; }

/* CTA block */
.mail-cta-block {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin: 16px 0 32px;
}
.mail-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0098FF; color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s;
  box-shadow: 0 4px 14px rgba(11,99,255,0.35);
  text-align: center;
}
.mail-cta-primary:hover { background: #007FE0; }
.mail-cta-primary [data-lucide] { width: 16px; height: 16px; }
.mail-cta-secondary {
  font-size: 13px; color: #A8AEBB;
  text-decoration: underline;
  text-decoration-color: rgba(168, 174, 187, 0.4);
  text-underline-offset: 3px;
  cursor: pointer;
}
.mail-cta-secondary:hover { color: #fff; }

.mail-outro {
  margin: 0 0 12px;
  font-size: 13px; line-height: 1.65;
  color: #A8AEBB;
  text-align: left;
}
.mail-outro:last-of-type { margin-bottom: 24px; }

.mail-signature {
  margin: 0 0 8px;
  font-size: 13px; line-height: 1.7;
  color: #A8AEBB;
  text-align: left;
}
.mail-signature span { color: #fff; font-weight: 600; }

/* Footer */
.mail-foot {
  width: 100%;
  max-width: 560px;
  margin-top: 8px;
  padding: 20px 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 16px;
}
.mail-foot .mf-logo {
  width: 22px; height: 22px; border-radius: 5px;
  background: #0098FF;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.mail-foot .mf-links {
  display: inline-flex; align-items: center; gap: 12px;
  margin-left: auto;
  font-size: 12px;
  color: #6B7280;
}
.mail-foot .mf-links a {
  color: #A8AEBB;
  cursor: pointer;
  text-decoration: none;
}
.mail-foot .mf-links a:hover { color: #fff; }
.mail-foot .mf-links .mf-sep { color: #4A4F58; }

/* Secondary CTA — outline button variant (used after main CTA) */
.mail-cta-secondary-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s, border-color 0.12s;
}
.mail-cta-secondary-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.45);
}
.mail-cta-block.compact { margin: 0 0 24px; }

/* Footer — address + tagline */
.mail-foot .mf-address {
  font-size: 11px; line-height: 1.6;
  color: #6B7280;
  margin-left: auto;
  text-align: right;
  display: flex; flex-direction: column; gap: 2px;
}
.mail-foot .mf-address .mf-tagline { color: #4A4F58; }

@media (max-width: 640px) {
  .mail-envelope { flex-direction: column; gap: 8px; }
  .mail-envelope .me-right { align-self: flex-start; }
  .mail-body { padding: 32px 16px 16px; }
  .mail-title { font-size: 24px; }
}


/* ═════════════════════════════════════════════
   SCREEN 7 — Sold variant additions
   ═════════════════════════════════════════════ */
.nn-account .listing-row .status.sold {
  background: #1F8A5B; color: #fff;
}
.nn-account .panel.detail .sold-banner {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #EAF7EF;
  border: 1px solid #C6E4D2;
  border-radius: 10px;
  margin: -4px 0 24px;
}
.nn-account .panel.detail .sold-banner .sb-ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: #1F8A5B; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nn-account .panel.detail .sold-banner .sb-ic [data-lucide] { width: 16px; height: 16px; }
.nn-account .panel.detail .sold-banner .sb-body strong {
  display: block; color: #1F8A5B; font-weight: 700; font-size: 14px;
  margin-bottom: 2px;
}
.nn-account .panel.detail .sold-banner .sb-body p {
  margin: 0; font-size: 12px; color: var(--nn-text-2);
}

/* ═════════════════════════════════════════════
   SCREEN MAIL-SOLD-NN — NNNS-themed sale-completed e-mail
   Yellow banner + bold editorial black/yellow body
   ═════════════════════════════════════════════ */
.nn-mail-stage {
  display: block;
  background: var(--nn-bg);
  min-height: 100vh;
}

/* Yellow banner mimicking step 8 nn-banner */
.nn-mail-banner {
  background: var(--nn-yellow);
}
.nn-mail-banner-inner {
  max-width: 720px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 16px;
}
.nn-mail-banner .nn-mail-logo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900; letter-spacing: -0.02em; font-size: 13px;
  color: var(--nn-black);
  display: inline-flex; align-items: center; gap: 8px;
}
.nn-mail-banner .nn-mail-logo .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--nn-black);
}
.nn-mail-banner .nn-mail-tag {
  margin-left: auto;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--nn-black); color: var(--nn-yellow);
  padding: 5px 10px;
}

/* Editorial body */
.nn-mail-body {
  max-width: 720px; margin: 0 auto;
  padding: 56px 32px 24px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--nn-text);
}
.nn-mail-card {
  background: #fff;
  padding: 56px 48px;
  border: 1px solid var(--nn-border);
}
.nn-mail-eyebrow {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  color: var(--nn-text-2); text-transform: uppercase;
  margin-bottom: 16px;
}
.nn-mail-h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--nn-black);
}
.nn-mail-h1 em {
  font-style: normal; font-weight: 400; color: var(--nn-text-2);
}
.nn-mail-h1 .hl { color: var(--nn-black); }
.nn-mail-h1 .hl .dot { color: var(--nn-yellow); }

.nn-mail-lede {
  margin: 0 0 32px;
  font-size: 16px; line-height: 1.55;
  color: var(--nn-text-2);
  max-width: 520px;
}

.nn-mail-amount-card {
  background: var(--nn-bg);
  border: 1px solid var(--nn-border);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.nn-mail-amount { display: flex; flex-direction: column; gap: 10px; }
.nn-mail-amount .nm-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.nn-mail-amount .nm-row .nm-label {
  color: var(--nn-text-2);
}
.nn-mail-amount .nm-row.main .nm-label,
.nn-mail-amount .nm-row.total .nm-label {
  color: var(--nn-black); font-weight: 600;
}
.nn-mail-amount .nm-row .nm-val {
  font-weight: 700; color: var(--nn-black);
}
.nn-mail-amount .nm-row .nm-val.big {
  font-size: 28px; font-weight: 900; letter-spacing: -0.02em;
}
.nn-mail-amount .nm-row .nm-val.muted {
  color: var(--nn-text-2); font-weight: 600;
}
.nn-mail-amount .nm-row.total {
  padding-top: 10px;
  border-top: 1px solid var(--nn-border);
}
.nn-mail-amount .nm-row.total .nm-val {
  font-size: 18px;
  color: var(--nn-black);
  background: var(--nn-yellow);
  padding: 2px 10px;
}

.nn-mail-section { margin-bottom: 32px; }
.nn-mail-section-title {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 700;
  color: var(--nn-text-2); text-transform: uppercase;
  margin-bottom: 14px;
}
.nn-mail-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.nn-mail-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--nn-border);
  border-left: 3px solid var(--nn-yellow);
  background: #fff;
}
.nn-mail-list li [data-lucide] {
  width: 18px; height: 18px;
  color: var(--nn-black);
  flex-shrink: 0; margin-top: 2px;
}
.nn-mail-list li > div { flex: 1; }
.nn-mail-list li strong {
  display: block;
  font-size: 14px; color: var(--nn-black); font-weight: 700;
  margin-bottom: 4px;
}
.nn-mail-list li span {
  font-size: 13px; color: var(--nn-text-2); line-height: 1.55;
}
.nn-mail-list li strong + span strong { color: var(--nn-black); font-weight: 700; }

.nn-mail-cta {
  display: flex; justify-content: flex-start;
  margin: 32px 0;
}
.nn-mail-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--nn-black); color: #fff;
  padding: 18px 28px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s;
}
.nn-mail-cta-btn:hover { background: #2a2a2a; }
.nn-mail-cta-btn [data-lucide] { width: 16px; height: 16px; color: var(--nn-yellow); }

.nn-mail-thanks {
  margin: 24px 0 0;
  font-size: 13px; line-height: 1.55;
  color: var(--nn-text-2);
}
.nn-mail-thanks strong { color: var(--nn-black); font-weight: 700; }

.nn-mail-foot {
  margin-top: 24px;
  padding: 18px 24px;
  border-top: 1px solid var(--nn-border);
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--nn-text-2);
  text-transform: uppercase;
}
.nn-mail-foot-sep { margin-left: auto; }

@media (max-width: 640px) {
  .nn-mail-body { padding: 24px 16px; }
  .nn-mail-card { padding: 32px 22px; }
}


/* ═════════════════════════════════════════════
   SCREEN "AUTORISER" — full-page authorize on IK shell
   ═════════════════════════════════════════════ */
.auth-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
  margin-bottom: 10px;
}
.auth-hero-left { min-width: 0; }
.auth-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ik-blue-500);
  background: #EDF6FF;
  border: 1px solid #C7DCF2;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.auth-eyebrow [data-lucide] { width: 14px; height: 14px; }
.auth-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--fg-1);
}
.auth-title .emph { font-weight: 700; }
.auth-intro {
  margin: 0;
  font-size: 14px; line-height: 1.6;
  color: var(--fg-2);
  max-width: 640px;
}
.auth-intro strong { color: var(--fg-1); font-weight: 500; }
.auth-intro .m-inline-link {
  color: var(--ik-blue-500); font-weight: 500;
  text-decoration: none;
}
.auth-intro .m-inline-link:hover { color: var(--ik-blue-700); }

/* Domains list card on the right */
.auth-domains-card {
  background: #fff;
  border: 1px solid var(--ik-gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.auth-domains-card .auth-dc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--fg-2); text-transform: uppercase;
  margin-bottom: 8px;
}
.auth-domains-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.auth-domains-card li {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ik-gray-200);
}
.auth-domains-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.auth-domains-card li strong { font-size: 14px; color: var(--fg-1); font-weight: 600; }
.auth-domains-card li span { font-size: 12px; color: var(--fg-2); }

/* Illustrated sections — illustration always on the right */
.auth-sections {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.auth-section {
  display: grid;
  grid-template-columns: auto 1fr 200px;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--ik-gray-200);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.auth-section .auth-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ik-blue-500);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em;
}
.auth-illu {
  width: 200px; height: 120px;
  background: var(--ik-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.auth-illu svg { width: 100%; height: 100%; }
.auth-content { min-width: 0; }
.auth-step-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  color: var(--ik-blue-500); text-transform: uppercase;
  margin-bottom: 4px;
}
.auth-content h3 {
  margin: 0 0 4px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--fg-1);
}
.auth-content p {
  margin: 0;
  font-size: 13px; line-height: 1.5;
  color: var(--fg-2);
}
.auth-content p strong { color: var(--fg-1); font-weight: 600; }
.auth-content p em {
  font-style: normal; font-weight: 600; color: var(--fg-1);
}
.auth-content p .m-inline-link {
  display: inline-flex; align-items: baseline; gap: 4px;
  color: var(--ik-blue-500); font-weight: 500;
  text-decoration: none;
}
.auth-content p .m-inline-link [data-lucide] {
  width: 12px; height: 12px; align-self: center;
}
.auth-content p .m-inline-link:hover { color: var(--ik-blue-700); }

/* Confirm bar at the bottom — everything on one line */
.auth-confirm {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 12px 0;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  box-shadow: none;
  margin-bottom: 20px;
}
.auth-confirm .ack {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; color: var(--fg-1);
  cursor: pointer;
  user-select: none;
  flex: 1; min-width: 280px;
}
.auth-confirm .ack .cbx { flex: 0 0 16px; }
.auth-confirm .ack strong { font-weight: 600; }
.auth-confirm .btn-link { margin-left: auto; }

@media (max-width: 960px) {
  .auth-hero { grid-template-columns: 1fr; }
  .auth-section { grid-template-columns: auto 1fr 160px; gap: 16px; padding: 14px; }
  .auth-illu { width: 160px; height: 100px; }
}
@media (max-width: 640px) {
  .auth-section { grid-template-columns: auto 1fr; }
  .auth-section .auth-illu { grid-column: 1 / -1; width: 100%; }
}
