:root {
  --bg: #0b0c0e;
  --bg-2: #111317;
  --bg-elev: #16181d;
  --ink: #eceef1;
  --ink-soft: #b8bdc6;
  --muted: #8b919c;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);
  --orange: #ff5a1f;
  --orange-deep: #d94812;
  --orange-soft: rgba(255, 90, 31, 0.12);
  --gold: #e8c36a;
  --font: "IBM Plex Sans", ui-sans-serif, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --radius: 12px;
  --nav-h: 68px;
  --max: 1180px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

::selection {
  background: rgba(255, 90, 31, 0.28);
  color: #fff;
}

:focus-visible {
  outline: 2px solid rgba(255, 90, 31, 0.7);
  outline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

html.is-locked,
html.is-locked body {
  overflow: hidden;
  overscroll-behavior: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Header —— */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(11, 12, 14, 0.88);
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
  transition: border-color 0.25s;
}

.top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 31, 0.55), transparent);
  pointer-events: none;
}

.top.is-scrolled {
  border-bottom-color: var(--line);
}

.top__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 max(1.5rem, env(safe-area-inset-right)) 0 max(1.5rem, env(safe-area-inset-left));
}

.brand img {
  width: 152px;
  height: auto;
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 0.2rem 0;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

.top__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.icon-btn:hover {
  border-color: rgba(255, 90, 31, 0.45);
  background: rgba(255, 90, 31, 0.08);
  color: var(--orange);
}

.icon-btn__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--orange);
  color: #140800;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px var(--bg);
}

.menu-btn {
  border: 0;
  background: transparent;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: transparent;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(5, 6, 8, 0.55);
  backdrop-filter: blur(6px);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem max(1.5rem, env(safe-area-inset-right)) 1.25rem max(1.5rem, env(safe-area-inset-left));
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  z-index: 41;
}

.drawer-nav a {
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.65rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.drawer-nav .btn {
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-btn,
  .drawer-nav,
  .drawer-backdrop {
    display: none !important;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--orange);
  color: #140800;
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.18);
}

.btn--primary:hover {
  background: var(--orange-deep);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.28);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.92rem;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(78svh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__panel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, #0b0c0e 0%, #0b0c0e 42%, #12151a 100%),
    linear-gradient(180deg, rgba(255, 90, 31, 0.06), transparent 40%);
}

.hero__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(48%, 560px);
  height: 100%;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 50%),
    linear-gradient(to left, rgba(255, 90, 31, 0.07), transparent 70%);
  border-left: 1px solid var(--line);
}

.hero__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 31, 0.35), transparent);
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 4rem max(1.5rem, env(safe-area-inset-right)) 4.25rem max(1.5rem, env(safe-area-inset-left));
}

.hero__kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__logo {
  width: min(360px, 78vw);
  margin-bottom: 1.75rem;
}

.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5.4vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 14ch;
  color: var(--ink);
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Trust strip —— */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem max(1.5rem, env(safe-area-inset-right)) 1.1rem max(1.5rem, env(safe-area-inset-left));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust__inner p,
.trust__inner a {
  margin: 0;
  color: var(--muted);
}

.trust__inner a:hover {
  color: var(--ink);
}

.trust__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

/* —— Sections —— */
.section,
.hubs-band,
#durum,
#yazilimlar,
#eklentiler,
#platform,
#destek {
  scroll-margin-top: calc(var(--nav-h) + 10px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem max(1.5rem, env(safe-area-inset-right)) 4.5rem max(1.5rem, env(safe-area-inset-left));
}

.section__head {
  max-width: 34rem;
  margin-bottom: 2.75rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__head h2,
.about__grid h2,
.band h2,
.contact__head h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
}

.section__sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 40ch;
}

/* —— Intro —— */
.intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem max(1.5rem, env(safe-area-inset-right)) 0.5rem max(1.5rem, env(safe-area-inset-left));
}

.intro__text {
  margin: 0;
  max-width: 46rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  font-weight: 500;
}

/* —— About (legacy) —— */
.about {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.about__grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .about__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: end;
  }
}

.about__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 42ch;
  line-height: 1.7;
}

/* —— Products —— */
.product {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--line);
}

.product:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
    align-items: center;
  }

  .product--flip .product__visual {
    order: 2;
  }
}

.product__visual {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.product__visual--a {
  background:
    linear-gradient(145deg, #1a1e26 0%, #12151a 55%, #0e1014 100%);
}

.product__visual--b {
  background:
    linear-gradient(145deg, #181c22 0%, #101317 55%, #0c0e12 100%);
}

.product__visual--c {
  background:
    linear-gradient(145deg, #1a1824 0%, #12141c 55%, #0e1016 100%);
}

.product__visual--a::before,
.product__visual--b::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.product__visual--a::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 1px;
  top: 42%;
  left: 18%;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.55;
}

.product__visual--b::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 38%;
  top: 28%;
  right: 28%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}


.product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__visual--c,
.product__visual--d {
  background: #12151a;
}

.product__visual--a::before,
.product__visual--b::before,
.product__visual--c::before,
.product__visual--d::before {
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

.product__visual--a::after,
.product__visual--b::after {
  z-index: 1;
  pointer-events: none;
}

.product__visual .frame {
  z-index: 2;
}

/* —— Add-on cards —— */
.addons {
  padding-top: 1.5rem;
}

.addon-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .addon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.addon-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.addon-card:hover {
  border-color: rgba(255, 90, 31, 0.35);
  transform: translateY(-2px);
}

.addon-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #12151a;
}

.addon-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addon-card__visual span {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(11, 12, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.addon-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.2rem 1.3rem 1.35rem;
  flex: 1;
}

.addon-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.addon-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.addon-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.addon-card__body ul li::before {
  content: "· ";
  color: var(--orange);
}

.addon-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.addon-card__row .product__price {
  margin: 0;
}

/* —— Status —— */
.status__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .status__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .status__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 799px) and (min-width: 560px) {
  .status__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.status-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  padding: 1.1rem 1.15rem 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.status-card--link {
  display: block;
  cursor: pointer;
}

.status-card--link:hover {
  border-color: rgba(255, 90, 31, 0.45);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transform: translateY(-2px);
}

.status-card--link:focus-visible {
  outline: 2px solid var(--accent, #ff5a1f);
  outline-offset: 3px;
}

.status-card__hint {
  display: none;
}

.product[data-open-url] {
  cursor: pointer;
}

.product[data-open-url]:focus-within {
  outline: none;
}

/* —— Platform hubs (CatalogHub / PresenceHub / RemoteHub) —— */
.hubs-band {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.06) 0%, transparent 28%),
    rgba(255, 255, 255, 0.02);
}

.hubs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem max(1.5rem, env(safe-area-inset-right)) 4.25rem max(1.5rem, env(safe-area-inset-left));
}

.hubs .section__head {
  max-width: 38rem;
}

.hubs__grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 860px) {
  .hubs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.hub-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  color: inherit;
}

.hub-card:hover {
  border-color: rgba(255, 90, 31, 0.4);
  transform: translateY(-2px);
}

.hub-card:focus-visible {
  outline: 2px solid var(--orange, #ff5a1f);
  outline-offset: 3px;
}

.hub-card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.hub-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-card__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(11, 12, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--orange, #ff5a1f);
}

.hub-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}

.hub-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.hub-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hub-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hub-card__body ul li::before {
  content: "·";
  margin-right: 0.35rem;
  color: var(--orange, #ff5a1f);
}

.hub-card__body .btn {
  align-self: stretch;
  justify-content: center;
  margin-top: auto;
}

.status-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.status-card__top h3 {
  margin: 0;
}

.status-card__label {
  display: none;
}

.status-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
}

.status-card__meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-card__url {
  margin: 0;
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--muted);
  opacity: 0.9;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.status-card[data-status="online"] .status-pill {
  color: #9fefb0;
  border-color: rgba(80, 180, 110, 0.45);
  background: rgba(40, 120, 70, 0.18);
}

.status-card[data-status="offline"] .status-pill {
  color: #f0a0a0;
  border-color: rgba(180, 80, 80, 0.45);
  background: rgba(120, 40, 40, 0.18);
}

.status-card[data-status="degraded"] .status-pill {
  color: #f0d090;
  border-color: rgba(180, 140, 60, 0.45);
  background: rgba(120, 90, 30, 0.18);
}

.frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.frame__no {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.frame__name {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.frame__cap {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.product__series {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.product__body h3 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.product__dek {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42ch;
}

.product__meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product__meta li {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.product__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem 1.5rem;
}

.product__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.product__price span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product__price strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
}

.product__price em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.85rem;
}

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* —— Steps —— */
.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.steps__list li {
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}

.steps__n {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.steps__list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.steps__list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* —— Support —— */
.support__grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 960px) {
  .support__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "head form"
      "faq form";
    gap: 1.75rem 3rem;
    align-items: start;
  }

  .support__grid > .section__head {
    grid-area: head;
    margin-bottom: 0;
  }

  .support__grid > .faq {
    grid-area: faq;
  }

  .support__grid > .contact {
    grid-area: form;
  }
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 44px;
}

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

.faq summary::after {
  content: "+";
  color: var(--orange);
  font-weight: 600;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0.7rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52ch;
}

.faq a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact {
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}

.contact__head {
  margin-bottom: 1.2rem;
}

.contact__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #2a2e36;
  background: #0b0c0e;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: rgba(255, 90, 31, 0.5);
}

.contact__note {
  margin-top: 0.9rem !important;
  color: var(--orange) !important;
  font-weight: 500 !important;
}

/* —— Band —— */
.band {
  padding: 4.5rem max(1.5rem, env(safe-area-inset-right)) 4.5rem max(1.5rem, env(safe-area-inset-left));
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.band__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.band__logo {
  width: min(220px, 58vw);
  margin: 0 auto 1.35rem;
}

.band p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

/* —— Footer —— */
.foot {
  padding: 3rem max(1.5rem, env(safe-area-inset-right)) max(2.25rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
}

.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.foot__brand img {
  width: 160px;
  margin-bottom: 0.5rem;
}

.foot__brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.foot__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.foot__label {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.foot__cols a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.foot__cols a:hover {
  color: var(--ink);
}

.foot__copy {
  margin: 0.25rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
}

.foot__copy #siteVersion {
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* —— Cart —— */
.cart[aria-hidden="true"] {
  pointer-events: none;
}

.cart[aria-hidden="true"] .cart__backdrop,
.cart[aria-hidden="true"] .cart__sheet {
  opacity: 0;
}

.cart[aria-hidden="true"] .cart__sheet {
  transform: translateX(104%);
}

.cart__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(6px);
  z-index: 50;
  transition: opacity 0.28s;
}

.cart__sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background:
    linear-gradient(180deg, #14181f 0%, #101317 40%, #0d1015 100%);
  border-left: 1px solid var(--line-strong);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45);
  z-index: 51;
  display: flex;
  flex-direction: column;
  transition: transform 0.38s var(--ease), opacity 0.28s;
  padding-bottom: env(safe-area-inset-bottom);
}

.cart__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.cart__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.cart__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cart__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem 1.25rem;
}

.cart__empty {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.65rem;
  padding: 3.5rem 1rem;
  color: var(--muted);
}

.cart__empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

.cart__empty-icon svg {
  width: 28px;
  height: 28px;
}

.cart__empty strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.cart__empty p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 26ch;
  line-height: 1.5;
}

.cart__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart__thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.cart__thumb--a {
  background: linear-gradient(145deg, #1f2630, #141820);
}

.cart__thumb--b {
  background: linear-gradient(145deg, #22262e, #12151a);
}

.cart__thumb--c {
  background: linear-gradient(145deg, #2a2436, #16141c);
}

.cart__thumb--d {
  background: linear-gradient(145deg, #2a2218, #16140f);
}

.cart__item-main {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
}

.cart__item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.cart__item-top strong {
  font-size: 0.98rem;
  font-weight: 600;
}

.cart__item-top .unit {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

.cart__item-top .line {
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.cart__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.qty button:hover {
  background: rgba(255, 90, 31, 0.1);
  color: var(--orange);
}

.qty button svg {
  width: 14px;
  height: 14px;
}

.qty span {
  min-width: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
}

.cart__remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem;
}

.cart__remove:hover {
  color: #ff8a7a;
}

.cart__remove svg {
  width: 14px;
  height: 14px;
}

.cart__foot {
  padding: 1.15rem 1.35rem 1.4rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0.75rem;
}

.cart__summary {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.cart__line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 500;
}

.cart__line--muted {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.55rem;
  margin-top: 0.15rem;
  border-top: 1px dashed var(--line);
  font-weight: 600;
}

.cart__total strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

.cart__hint {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.45;
}

.cart__hint svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
}

/* —— Toast —— */
.toast {
  position: fixed;
  left: 50%;
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(12px);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 90, 31, 0.35);
  background: rgba(16, 19, 23, 0.96);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  max-width: min(92vw, 360px);
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 899px) {
  :root {
    --nav-h: 64px;
  }

  .top__actions .btn--primary,
  .auth-nav .auth-nav__register {
    display: none;
  }

  .brand img {
    width: min(138px, 40vw);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero__panel::after {
    width: 100%;
    height: 42%;
    top: auto;
    bottom: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(0deg, rgba(255, 90, 31, 0.06), transparent);
  }

  .hero__cta .btn {
    min-height: 46px;
  }

  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .product__visual {
    min-height: 220px;
  }

  .product__row {
    flex-direction: column;
    align-items: stretch;
  }

  .product__actions .btn {
    flex: 1;
    min-height: 46px;
  }
}

@media (max-width: 599px) {
  :root {
    --nav-h: 60px;
  }

  .brand img {
    width: min(122px, 44vw);
  }

  .icon-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .hero__logo {
    width: min(280px, 86vw);
    margin-bottom: 1.25rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .trust__inner {
    gap: 0.5rem 0.85rem;
    font-size: 0.68rem;
  }

  .product__actions {
    flex-direction: column;
  }

  .product__actions .btn {
    width: 100%;
  }

  .contact input,
  .contact textarea {
    font-size: 16px;
  }

  .contact .btn,
  .band .btn {
    width: 100%;
  }

  .band .btn {
    max-width: 320px;
  }

  .foot__cols {
    flex-direction: column;
    gap: 1.35rem;
  }

  .cart__sheet {
    width: 100%;
    border-left: 0;
  }
}

@media (max-width: 379px) {
  .brand img {
    width: 108px;
  }

  .hero__title {
    font-size: 1.7rem;
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero__inner {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }

  .hero__logo {
    width: min(200px, 36vw);
  }
}

@media (min-width: 600px) and (max-width: 799px) {
  .steps__list {
    grid-template-columns: 1fr;
  }
}

/* Auth nav + modal + account */
.auth-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 220px;
  padding: 0.28rem 0.7rem 0.28rem 0.28rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

a.user-chip:hover {
  border-color: rgba(255, 90, 31, 0.45);
  background: rgba(255, 90, 31, 0.08);
}

.user-chip--here {
  cursor: default;
  border-color: rgba(255, 90, 31, 0.28);
  background: rgba(255, 90, 31, 0.06);
}

.user-chip--admin {
  border-color: rgba(232, 195, 106, 0.35);
}

.user-chip--admin .user-chip__ava {
  background: linear-gradient(145deg, #e8c36a, #b8892d);
  color: #1a1204;
  box-shadow: 0 6px 18px rgba(232, 195, 106, 0.22);
}

.user-chip__ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #fff;
  flex-shrink: 0;
}

.user-chip__meta {
  display: grid;
  line-height: 1.15;
  min-width: 0;
}

.user-chip__name {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-chip__role {
  font-size: 0.68rem;
  color: var(--muted);
}

.icon-btn--ghost {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .user-chip__meta {
    display: none;
  }
  .user-chip {
    padding: 0.22rem;
    max-width: none;
  }
}
.btn--sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
}
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}
.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(8px);
}
.auth-modal__sheet {
  position: relative;
  width: min(420px, calc(100vw - 2rem));
  max-height: min(92dvh, 100%);
  overflow: auto;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 90, 31, 0.14), transparent 52%),
    #0c0c0d;
  border: 1px solid #2a2a2e;
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.55rem;
  z-index: 1;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.auth-modal__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.auth-modal__brand img {
  width: 92px;
  height: auto;
}
.auth-modal__kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.auth-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.auth-modal__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}
.auth-modal__lead {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.auth-modal__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.28rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.auth-modal__tabs button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  min-height: 40px;
  border-radius: 9px;
  cursor: pointer;
}
.auth-modal__tabs button.is-on {
  background: rgba(255, 90, 31, 0.16);
  color: var(--ink);
}
.auth-modal__form {
  display: grid;
  gap: 0.85rem;
}
.auth-modal__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #9a9892;
}
.auth-modal__form input {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #2a2a2e;
  background: #111214;
  color: #f2f1ef;
  font: inherit;
  font-size: 16px;
  width: 100%;
}
.auth-modal__pass {
  position: relative;
}
.auth-modal__pass input {
  padding-right: 3rem;
}
.auth-modal__eye {
  position: absolute;
  right: 0.35rem;
  bottom: 0.28rem;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.auth-modal__eye svg {
  width: 18px;
  height: 18px;
}
.auth-modal__forgot {
  justify-self: start;
  background: none;
  border: 0;
  padding: 0;
  color: var(--orange);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-modal__error {
  margin: 0.65rem 0 0;
  color: #ff6b6b;
  font-size: 0.85rem;
}
.auth-modal__error.is-ok {
  color: #9dffb0;
}
.auth-modal__switch {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--muted);
}
.auth-modal__switch button {
  background: none;
  border: 0;
  color: var(--orange);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-modal__panel {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}
.auth-modal__panel i,
.auth-modal__panel svg {
  width: 36px;
  height: 36px;
  color: var(--orange);
  margin: 0 auto 0.75rem;
}
.auth-modal__panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.auth-modal__panel .btn {
  margin-top: 1rem;
}
.auth-modal__hint {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}
.auth-modal__panel .auth-modal__hint {
  font-size: 0.78rem;
  color: var(--muted);
}
@media (max-width: 599px) {
  .auth-modal {
    align-items: end;
    padding: 0;
  }
  .auth-modal__sheet {
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  }
}
/* —— Account page (premium compact) —— */
.page-account {
  min-height: 100vh;
}
.page-account .top {
  position: sticky;
  top: 0;
  z-index: 40;
}
.acct {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.35rem 1.25rem 3rem;
}
.acct-strip {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.acct-identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 90, 31, 0.16), transparent 46%),
    linear-gradient(135deg, rgba(22, 24, 29, 0.98), rgba(17, 19, 23, 0.86));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}
.acct-identity__body {
  min-width: 0;
  flex: 1;
}
.acct-identity__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}
.acct-identity__row h1 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.acct-identity__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-left: auto;
}
.acct-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.24);
  flex-shrink: 0;
}
.acct-avatar--admin {
  background: linear-gradient(145deg, #e8c36a, #b8892d);
  color: #1a1204;
  box-shadow: 0 8px 20px rgba(232, 195, 106, 0.24);
}
.acct-email {
  margin: 0.2rem 0 0;
  font-weight: 600;
  font-size: 0.92rem;
}
.acct-sub {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.acct-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.role-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.48rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}
.role-pill--admin {
  color: #1a1204;
  background: linear-gradient(135deg, #e8c36a, #d4a84a);
  border-color: transparent;
}
.acct-id {
  margin: 0.2rem 0 0;
  font-size: 0.7rem;
  color: var(--dim, var(--muted));
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.acct-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}
.acct-metrics > div {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elev);
}
.acct-metrics dt {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.acct-metrics dd {
  margin: 0.28rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.acct-metrics__sm {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
}
.acct-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.9fr);
  gap: 0.85rem;
  align-items: start;
}
.acct-card {
  padding: 0.95rem 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elev);
}
.acct-card--tight {
  padding: 0.8rem 0.85rem 0.75rem;
}
.acct-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.acct-card__head h2 {
  margin: 0.1rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
}
.acct-card--tight .acct-card__head {
  margin-bottom: 0.45rem;
}
.acct-card--tight .acct-card__head h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.acct-side {
  display: grid;
  gap: 0.75rem;
}
.acct-links,
.acct-support,
.acct-rows {
  display: grid;
  gap: 0.2rem;
}
.acct-link,
.acct-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.45rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}
.acct-link:hover,
.acct-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.acct-row__icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  flex-shrink: 0;
}
.acct-row__icon svg,
.acct-link > svg:last-child {
  width: 14px;
  height: 14px;
}
.acct-link > span:nth-child(2) {
  flex: 1;
  font-size: 0.88rem;
  font-weight: 500;
}
.acct-link > svg:last-child {
  color: var(--muted);
}
.acct-row__text {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  flex: 1;
}
.acct-row__text strong {
  font-size: 0.88rem;
  font-weight: 600;
}
.acct-row__text span {
  font-size: 0.72rem;
  color: var(--muted);
}
.acct-row__cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  flex-shrink: 0;
}
.acct-row--danger .acct-row__icon {
  background: rgba(255, 107, 107, 0.12);
  color: #ff8a8a;
}
.acct-row--danger .acct-row__cta {
  color: #ff8a8a;
}
.acct-admin-lock {
  margin: 0.15rem 0.45rem 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.acct-licenses {
  display: grid;
  gap: 0.65rem;
}
.acct-empty {
  display: grid;
  justify-items: start;
  gap: 0.45rem;
  padding: 1.1rem 0.2rem 0.35rem;
  color: var(--ink-soft);
}
.acct-empty strong {
  color: var(--ink);
  font-size: 0.95rem;
}
.acct-empty p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.85rem;
}
.lic {
  position: relative;
  padding: 0.85rem 0.9rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 90, 31, 0.08), transparent 42%),
    rgba(12, 13, 16, 0.55);
  overflow: hidden;
}
.lic--b {
  background:
    linear-gradient(160deg, rgba(110, 182, 255, 0.1), transparent 42%),
    var(--bg-elev);
}
.lic__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.lic__mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(255, 90, 31, 0.25);
}
.lic--b .lic__mark {
  background: rgba(110, 182, 255, 0.12);
  color: #8fc7ff;
  border-color: rgba(110, 182, 255, 0.28);
}
.lic__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.lic__top h3 {
  margin: 0.08rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
}
.lic__badge {
  margin-left: auto;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9dffb0;
  background: rgba(61, 180, 100, 0.14);
  border: 1px solid rgba(61, 180, 100, 0.28);
}
.lic__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.lic__meta span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.lic__meta strong {
  font-size: 0.86rem;
  font-weight: 600;
}
.lic__bar {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 0.7rem;
}
.lic__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffb087);
}
.lic--b .lic__bar span {
  background: linear-gradient(90deg, #6eb6ff, #b8ddff);
}
.lic--c {
  background:
    linear-gradient(160deg, rgba(168, 132, 255, 0.12), transparent 42%),
    var(--bg-elev);
}
.lic--c .lic__mark {
  background: rgba(168, 132, 255, 0.14);
  color: #cbb6ff;
  border-color: rgba(168, 132, 255, 0.3);
}
.lic--c .lic__bar span {
  background: linear-gradient(90deg, #a884ff, #d8c8ff);
}
.lic--d {
  background:
    linear-gradient(160deg, rgba(232, 140, 74, 0.14), transparent 42%),
    var(--bg-elev);
}
.lic--d .lic__mark {
  background: rgba(232, 140, 74, 0.14);
  color: #ffc39a;
  border-color: rgba(232, 140, 74, 0.3);
}
.lic--d .lic__bar span {
  background: linear-gradient(90deg, var(--orange), #ffb087);
}
.lic__note {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.products--addons {
  padding-top: 0.5rem;
}
.lic__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.acct-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(10px);
}
.acct-gate[hidden] {
  display: none;
}
.acct-gate__card {
  width: min(420px, 100%);
  padding: 1.75rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-elev);
  text-align: center;
}
.acct-gate__card h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
}
.acct-gate__card p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}
.acct-gate__card .btn {
  width: 100%;
  justify-content: center;
}
.acct-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}
.acct-sheet[hidden] {
  display: none;
}
.acct-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(8px);
}
.acct-sheet__card {
  position: relative;
  width: min(400px, calc(100vw - 2rem));
  max-height: min(92dvh, 100%);
  overflow: auto;
  z-index: 1;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid #2a2a2e;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 90, 31, 0.14), transparent 52%),
    #0c0c0d;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.acct-sheet--danger .acct-sheet__card {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 90, 31, 0.08), transparent 40%),
    radial-gradient(ellipse at 90% 0%, rgba(255, 80, 80, 0.14), transparent 48%),
    #0c0c0d;
  border-color: rgba(255, 107, 107, 0.28);
}
.acct-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.acct-sheet__head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.acct-sheet__lead {
  margin: 0.45rem 0 0.95rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.acct-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.acct-sheet__actions .btn {
  flex: 1;
  justify-content: center;
}
.acct-sheet__form {
  display: grid;
  gap: 0.65rem;
}
.acct-sheet__form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.acct-sheet__form input {
  padding: 0.68rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #0c0c0d;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}
.btn--danger-solid {
  background: transparent;
  border: 1px solid rgba(255, 107, 107, 0.55);
  color: #ff8a8a;
}
.btn--danger-solid:hover {
  background: rgba(255, 80, 80, 0.12);
  border-color: #ff8a8a;
}
.acct-form-msg {
  margin: 0;
  font-size: 0.82rem;
}
.acct-form-msg.is-err { color: #ff6b6b; }
.acct-form-msg.is-ok { color: #9dffb0; }

@media (max-width: 860px) {
  .acct-layout,
  .acct-metrics,
  .lic__meta {
    grid-template-columns: 1fr;
  }
  .acct-identity__actions {
    width: 100%;
  }
  .acct-identity__actions .btn {
    flex: 1;
    justify-content: center;
  }
  .acct-sheet {
    align-items: end;
    padding: 0;
  }
  .acct-sheet__card {
    width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 92dvh;
    padding-bottom: max(1.15rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .btn,
  .acct-link,
  .acct-row,
  .user-chip {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yonetim-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .yonetim-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.yonetim-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-elev);
  min-width: min(280px, 100%);
}
.yonetim-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  width: 100%;
}
.yonetim-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elev);
}
.yonetim-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.yonetim-table th,
.yonetim-table td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.yonetim-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.yonetim-id {
  font-size: 0.72rem;
  color: var(--muted);
  word-break: break-all;
  margin-top: 0.2rem;
}
.yonetim-on {
  color: #9dffb0;
  font-weight: 600;
}
.yonetim-off {
  color: var(--muted);
}
.yonetim-mini {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.75rem;
}
.yonetim-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem !important;
}
.yonetim-detail td {
  background: rgba(255, 255, 255, 0.02);
}
.yonetim-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.yonetim-detail ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
@media (max-width: 800px) {
  .yonetim-detail__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .yonetim-stats {
    grid-template-columns: 1fr;
  }
}
