/* Generated bundle from styles/*.css. Edit module files first, then rebuild this bundle before upload. */

/* base.css */
:root {
  --ink: #182328;
  --muted: #5f6e73;
  --line: #dfe7e5;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --teal: #0c6f73;
  --teal-dark: #084d54;
  --green: #62a744;
  --amber: #c9972d;
  --charcoal: #11191d;
  --shadow: 0 16px 36px rgba(17, 25, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.6;
}

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

a[href],
button:not(:disabled),
[role="button"],
label[for],
select {
  cursor: url("/assets/beestodo-bee-hand.png?v=slim-bee-3") 8 2, pointer;
}

a[href]:focus-visible,
button:not(:disabled):focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(242, 183, 5, 0.48);
  outline-offset: 3px;
}

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

button {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

label {
  display: grid;
  gap: 8px;
  color: #33474d;
  font-size: 14px;
  font-weight: 800;
}

/* header.css */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-bar {
  background: var(--charcoal);
  color: #f7fbfa;
  font-size: 13px;
}

.top-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 111px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.mobile-site-menu { display: contents; }
.mobile-site-menu-button { display: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 342px;
}

.brand-logo-link {
  min-width: clamp(231px, 27vw, 342px);
  gap: 0;
}

.brand-logo {
  width: clamp(231px, 27vw, 342px);
  height: 111px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.home-page-header .nav-wrap {
  min-height: 144.3px;
}

.home-page-header .brand,
.home-page-header .brand-logo-link {
  min-width: clamp(250px, 23vw, 300px);
}

.home-page-header .brand-logo {
  width: clamp(250px, 23vw, 300px);
  height: 144.3px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #304247;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 6px;
  color: #191714;
  cursor: url("/assets/beestodo-bee-hand.png?v=slim-bee-3") 8 2, pointer;
  transition: color 160ms ease;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 2px;
  left: 6px;
  height: 3px;
  border-radius: 999px;
  background: #f2b705;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: #191714;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav a,
.nav-actions a,
.nav-actions button {
  white-space: nowrap;
  word-break: keep-all;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions [hidden] {
  display: none !important;
}

.text-link {
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.muted-link {
  color: #5d6b70;
}

.account-menu {
  position: relative;
}

.account-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  z-index: 19;
  height: 18px;
}

.account-trigger {
  display: grid;
  gap: 2px;
  min-width: 180px;
  border: 0;
  background: transparent;
  color: #14292d;
  text-align: left;
  cursor: pointer;
}

.account-trigger span {
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: var(--muted);
}

.account-trigger b {
  color: var(--teal-dark);
  font-size: 14px;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  min-width: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 25, 29, 0.16);
  padding: 22px;
}

.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown {
  display: grid;
}

.account-dropdown div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.account-dropdown div + div {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.account-dropdown strong {
  color: var(--teal-dark);
  text-transform: uppercase;
  font-size: 13px;
}

.account-dropdown a {
  color: #34494e;
  font-size: 14px;
  font-weight: 800;
}

.primary-btn,
.secondary-btn,
.outline-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.primary-btn {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 22px rgba(12, 111, 115, 0.2);
}

.secondary-btn {
  background: white;
  color: var(--teal-dark);
  border-color: var(--line);
}

.outline-btn {
  color: var(--teal);
  border-color: #b7d3d2;
  background: #f8fbfa;
}

.wide {
  width: 100%;
}

/* home.css */
.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 84px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 17, 20, 0.88) 0%, rgba(9, 17, 20, 0.62) 39%, rgba(9, 17, 20, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero .hero-brand-title {
  position: relative;
  display: inline-block;
  max-width: none;
  padding-bottom: 18px;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
}

.hero .hero-brand-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  width: clamp(72px, 9vw, 124px);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: #e6eeee;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  color: #f7fbfa;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-item {
  min-height: 126px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 18px;
}

.trust-item span {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section-head {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2,
.account-copy h2,
.download-copy h1,
.notice-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head p,
.account-copy p,
.download-copy p,
.notice-band p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.product-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.product-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-copy h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.2;
}

.product-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
  color: #33474d;
  font-weight: 700;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.feature-band,
.account-band {
  background: var(--soft);
}

.feature-grid,
.price-grid,
.support-grid,
.download-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.price-card,
.support-item,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 28px;
}

.feature-card {
  min-height: 220px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #e8f3ef;
  color: var(--teal);
  font-weight: 900;
}

.feature-card h3,
.support-item h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.feature-card p,
.support-item p,
.download-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: grid;
  gap: 26px;
  min-height: 430px;
  align-content: space-between;
}

.price-card.accent {
  border-color: #a9d3c4;
  background: #f7fcf9;
}

.plan-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3,
.download-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.price {
  margin: 0 0 12px;
  color: var(--teal-dark) !important;
  font-size: 34px;
  font-weight: 900;
}

.account-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 146px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.flow-list strong,
.flow-list span {
  display: block;
}

.flow-list strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.flow-list span {
  color: var(--muted);
}

.support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.inline-links a {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
}

.site-footer {
  min-height: 140px;
  padding: 34px max(16px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--charcoal);
  color: white;
}

.site-footer p {
  margin: 6px 0 0;
  color: #bdd0d2;
}

.homepage-version {
  display: block;
  margin-top: 7px;
  color: #8fa7aa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

.homepage-version-footer {
  min-height: 92px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #e9f3f2;
  font-weight: 700;
}

/* auth.css */
.auth-page,
.checkout-page,
.mypage {
  background: var(--soft);
}

.auth-panel,
.checkout-layout,
.mypage-head,
.mypage-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.auth-panel {
  padding: 78px 0 92px;
}

.auth-intro {
  max-width: 740px;
  margin-bottom: 34px;
}

.auth-intro h1,
.checkout-form h1,
.mypage-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

.auth-intro p,
.checkout-form > p,
.mypage-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: start;
}

.auth-flow .auth-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.auth-flow-card {
  width: min(620px, 100%);
  margin: 0 auto;
}

.form-card,
.checkout-form,
.order-summary,
.mypage-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(17, 25, 29, 0.06);
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.form-card[hidden],
.mypage-card[hidden] {
  display: none !important;
}

.auth-email-pill {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  border: 1px solid #c7dad8;
  border-radius: 8px;
  background: #f6fbfa;
  padding: 10px 12px;
  color: #16363c;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.auth-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 14px;
}

.auth-identity .profile-avatar {
  width: 54px;
  height: 54px;
}

.auth-identity div:last-child {
  display: grid;
  gap: 3px;
}

.auth-identity strong {
  color: #14292d;
  font-size: 17px;
}

.auth-identity span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.auth-success-note {
  margin: 0;
  border: 1px solid #a9d3c4;
  border-radius: 8px;
  background: #e9f8ed;
  padding: 14px;
  color: #1d6b4e;
  font-weight: 900;
}

.auth-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.auth-message.error {
  color: #a83232;
}

.auth-message.success {
  color: #1d6b4e;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  justify-self: center;
}

.text-button.inline {
  justify-self: start;
  padding: 0;
}

.text-button.danger {
  color: #a33a2f;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #14292d;
  font-weight: 900;
}

.cart-link span {
  min-width: 22px;
  min-height: 22px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  font-size: 12px;
}

.form-row-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.muted-card {
  background: #fbfdfc;
}

.form-card h2,
.checkout-form h2,
.order-summary h2,
.mypage-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.check-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* cart-checkout.css */
.empty-state {
  display: grid;
  gap: 14px;
  border: 1px dashed #c9d8d5;
  border-radius: 8px;
  background: #fbfdfc;
  padding: 24px;
}

.empty-state h1,
.empty-state h2,
.empty-state p {
  margin: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 20px;
}

.cart-item h2,
.cart-item p {
  margin: 0;
}

.cart-item small {
  color: var(--muted);
  font-weight: 800;
}

.cart-item-side,
.stacked-actions,
.order-complete-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.cart-item-side {
  justify-items: end;
}

.cart-item-side strong {
  color: #14292d;
  font-size: 22px;
}

.compact-summary {
  margin: 16px 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
  padding: 78px 0 92px;
}

.checkout-form {
  display: grid;
  gap: 26px;
  padding: 34px;
}

.form-section {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdfc;
}

.payment-option.active {
  border-color: #a9d3c4;
  background: #f3fbf7;
}

.payment-option.disabled {
  opacity: 0.62;
}

.payment-option input {
  width: 18px;
  min-width: 18px;
  margin-top: 4px;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  color: var(--muted);
  font-weight: 700;
}

.order-summary {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 24px;
  padding: 28px;
}

.bank-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}

.bank-box strong {
  color: var(--teal-dark);
}

.order-progress-open {
  overflow: hidden;
}

.order-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(10, 18, 20, 0.58);
  backdrop-filter: blur(8px);
}

.order-progress-overlay[hidden] {
  display: none !important;
}

.order-progress-modal {
  position: relative;
  width: min(460px, 100%);
  overflow: hidden;
  border: 1px solid #cfe2dc;
  border-radius: 8px;
  background: #fff;
  padding: 34px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(17, 25, 29, 0.28);
}

.order-progress-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}

.order-spinner {
  width: 66px;
  height: 66px;
  border: 6px solid #e0eee9;
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: order-spin 0.85s linear infinite;
}

.order-success-check,
.order-error-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  animation: order-pop 0.38s ease-out both;
}

.order-success-check {
  background: var(--green);
}

.order-error-mark {
  background: #a33a2f;
}

.order-progress-modal h2 {
  margin: 0;
  color: #102427;
  font-size: 28px;
  line-height: 1.18;
}

.order-progress-modal p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.order-progress-bar {
  height: 10px;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 999px;
  background: #e7efec;
}

.order-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transition: width 0.45s ease;
}

.order-progress-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  color: #718184;
  font-size: 13px;
  font-weight: 900;
}

.order-progress-steps span {
  border-radius: 999px;
  background: #f4f8f7;
  padding: 7px 8px;
}

.order-progress-steps span.active,
.order-progress-steps span.done {
  color: #0e4f4f;
  background: #e4f5ed;
}

.order-success-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.order-progress-overlay.success .order-success-burst,
.order-complete-celebration .order-success-burst {
  opacity: 1;
}

.order-success-burst span {
  position: absolute;
  width: 9px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  animation: order-confetti 0.9s ease-out both;
}

.order-success-burst span:nth-child(1) {
  left: 18%;
  top: 24%;
  background: var(--teal);
}

.order-success-burst span:nth-child(2) {
  left: 32%;
  top: 12%;
  animation-delay: 0.05s;
}

.order-success-burst span:nth-child(3) {
  right: 24%;
  top: 16%;
  background: var(--amber);
  animation-delay: 0.1s;
}

.order-success-burst span:nth-child(4) {
  right: 16%;
  top: 34%;
  animation-delay: 0.14s;
}

.order-success-burst span:nth-child(5) {
  left: 22%;
  bottom: 18%;
  background: var(--amber);
  animation-delay: 0.18s;
}

.order-success-burst span:nth-child(6) {
  right: 28%;
  bottom: 16%;
  background: var(--teal);
  animation-delay: 0.22s;
}

.order-complete-celebration {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #f0fbf4;
  padding: 24px;
  text-align: center;
}

.order-complete-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.order-complete-celebration strong {
  color: #102427;
  font-size: 24px;
  line-height: 1.2;
}

.order-complete-celebration p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

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

@keyframes order-pop {
  0% {
    transform: scale(0.72);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes order-confetti {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateY(44px) rotate(210deg);
    opacity: 0;
  }
}

/* mypage.css */
.mypage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  padding-bottom: 92px;
}

.mypage-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 260px;
  padding: 28px;
}

.mypage-card p {
  margin: 0;
  color: var(--muted);
}

.customer-dashboard {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  padding: 72px 0 92px;
}

.dashboard-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.dashboard-profile {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #f8fbfa;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.dashboard-profile strong,
.dashboard-profile span {
  overflow-wrap: anywhere;
}

.dashboard-profile span {
  color: var(--muted);
  font-size: 14px;
}

.dashboard-profile button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.dashboard-menu {
  display: grid;
  gap: 4px;
  padding: 0 0 0 8px;
}

.dashboard-menu strong {
  margin: 0 0 12px;
  color: var(--teal-dark);
  text-transform: uppercase;
  font-size: 14px;
}

.dashboard-menu a {
  border-radius: 8px;
  padding: 12px 10px;
  color: #34494e;
  font-weight: 900;
}

.dashboard-menu a.active,
.dashboard-menu a:hover {
  background: #fff;
  color: var(--teal-dark);
}

.dashboard-content {
  min-width: 0;
}

.dashboard-panel {
  display: grid;
  gap: 24px;
}

.dashboard-panel[hidden] {
  display: none !important;
}

.dashboard-panel h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
}

.dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dashboard-action-card,
.dashboard-wide-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 25, 29, 0.06);
}

.dashboard-action-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 150px;
  align-content: center;
  padding: 24px;
  color: #14292d;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dashboard-action-card::after {
  content: ">";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e8f4f2;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  opacity: 0.82;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.dashboard-action-card:hover,
.dashboard-action-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(29, 124, 126, 0.38);
  background: linear-gradient(180deg, #fff 0%, #f7fcfb 100%);
  box-shadow: 0 18px 42px rgba(17, 25, 29, 0.11);
}

.dashboard-action-card:hover::after,
.dashboard-action-card:focus-visible::after {
  transform: translateX(3px);
  background: var(--teal);
  color: #fff;
  opacity: 1;
}

.dashboard-action-card:focus-visible {
  outline: 3px solid rgba(53, 138, 142, 0.28);
  outline-offset: 3px;
}

.dashboard-action-card span {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.dashboard-action-card strong {
  font-size: 18px;
  line-height: 1.35;
}

.dashboard-action-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.dashboard-wide-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.dashboard-wide-card h2 {
  margin: 0;
  font-size: 24px;
}

.dashboard-wide-card p {
  margin: 0;
  color: var(--muted);
}

.dashboard-form {
  width: min(620px, 100%);
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}

.dashboard-form.compact-form {
  width: 100%;
  box-shadow: none;
}

.account-delete-link-row {
  width: min(620px, 100%);
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.account-delete-link-row .text-button {
  font-size: 13px;
}

.account-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 26, 0.56);
  backdrop-filter: blur(7px);
}

.account-delete-modal[hidden] {
  display: none !important;
}

.account-delete-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid #efc8c2;
  border-radius: 8px;
  background: #fffafa;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(17, 25, 29, 0.28);
}

.account-delete-dialog h2 {
  margin: 0;
  color: #7d2f29;
  font-size: 30px;
  line-height: 1.2;
}

.account-delete-copy {
  margin: 10px 0 0;
  color: #6f5651;
  font-weight: 800;
  line-height: 1.65;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid #efc8c2;
  border-radius: 50%;
  background: #fff;
  color: #7d2f29;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.account-delete-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.account-reason-list {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.account-reason-list legend {
  margin-bottom: 4px;
  color: #33474d;
  font-size: 14px;
  font-weight: 900;
}

.account-reason-list label,
.account-danger-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5f3d39;
  font-weight: 900;
}

.account-reason-list input,
.account-danger-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
}

.account-delete-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.danger-action-btn {
  min-height: 44px;
  width: fit-content;
  border: 1px solid #8e2f2a;
  border-radius: 8px;
  background: #9f332c;
  color: #fff;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.danger-action-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.customer-summary {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 14px;
}

.customer-summary p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.customer-summary span {
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 10px 12px;
}

.summary-list p {
  display: grid;
  align-items: center;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 6px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 7px 0;
  min-width: 0;
}

.summary-list p:first-child {
  border-top: 0;
  padding-top: 0;
}

.summary-list p:last-child {
  padding-bottom: 0;
}

.summary-list strong {
  color: #273d42;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.summary-list span {
  color: #637478;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

.download-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 16px;
}

.download-list-item div {
  display: grid;
  gap: 4px;
}

.download-list-item strong {
  color: #14292d;
  font-size: 18px;
}

.download-list-item span {
  color: var(--muted);
  font-weight: 700;
}

.download-list-item.disabled {
  background: #f7f8f7;
  opacity: 0.76;
}

.license-panel {
  display: grid;
  grid-template-columns: minmax(205px, 0.8fr) minmax(260px, 1.2fr);
  gap: 10px;
  align-items: center;
  border: 1px solid #cfe2dc;
  border-radius: 8px;
  background: #f4fbf8;
  padding: 12px;
}

.license-panel > div:first-child {
  display: grid;
  align-content: center;
  gap: 7px;
}

.license-key-field {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) auto auto;
  gap: 6px;
  align-items: center;
}

.license-key-field input {
  width: 100%;
  min-width: 0;
  height: 36px;
  border: 1px solid #c4d8d2;
  border-radius: 6px;
  background: #ffffff;
  color: #102427;
  padding: 0 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.license-key-field .secondary-btn.compact,
.license-key-field .text-button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.license-key-field .text-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.license-panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.cloud-service-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #cfe2dc;
  border-radius: 8px;
  background: #f8fbfa;
  padding: 20px;
}

.cloud-service-panel div {
  display: grid;
  gap: 6px;
}

.cloud-service-panel h3 {
  margin: 0;
  color: #14292d;
  font-size: 22px;
}

.cloud-service-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.cloud-service-panel .primary-btn {
  flex: 0 0 auto;
  min-width: 210px;
}

.license-device-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  padding: 18px;
}

.license-device-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.license-device-head h3 {
  margin: 0;
  font-size: 18px;
}

.license-device-head span {
  color: var(--teal-dark);
  font-weight: 900;
}

.license-device-list {
  display: grid;
  gap: 8px;
}

.license-device-app {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  margin-bottom: 7px;
  background: #e8f4f2;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.license-device-app.server {
  background: #fff4d6;
  color: #7a5200;
}

.license-device-app.client {
  background: #e8f4f2;
  color: var(--teal-dark);
}

.license-device-app.unknown {
  background: #edf0f0;
  color: #536166;
}

.license-device-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
}

.license-device-row strong,
.license-device-row small {
  display: block;
  overflow-wrap: anywhere;
}

.license-device-row strong {
  color: #102427;
}

.license-device-row small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.download-license-panel {
  margin-bottom: 18px;
}

.download-file-section {
  margin-top: 22px;
  border-radius: 8px;
  background: #f6f8f7;
  padding: 22px;
}

.download-file-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.download-file-section-header h3 {
  margin: 2px 0 4px;
  color: #14292d;
  font-size: 22px;
}

.download-file-section-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.download-file-section-header strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 10px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
}

.download-variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.download-variant-card {
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
}

.download-variant-card.server {
  background: #fffdf8;
}

.download-variant-card.client {
  background: #ffffff;
}

.download-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.platform-badge.windows {
  background: #eef2f4;
  color: #334349;
}

.platform-badge.macos {
  background: #eef2f4;
  color: #334349;
}

.platform-badge.common {
  background: #eef2f4;
  color: var(--muted);
}



.download-variant-card h3 {
  margin: 10px 0 5px;
  color: #14292d;
  font-size: 19px;
}

.download-variant-card p,
.download-variant-card small {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.download-variant-card.locked {
  background: #f7f8f7;
  opacity: 0.76;
}

.download-file-name,
.download-file-meta {
  display: block;
  margin-top: 10px !important;
  word-break: break-all;
}

.download-file-name {
  color: #27383d !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.download-file-meta {
  color: #7a6a43 !important;
  font-size: 12px;
}

.mini-form {
  display: grid;
  gap: 12px;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.order-row span {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: #765b14;
  background: #fff3ce;
  font-size: 14px;
  font-weight: 900;
}

.status-pill.done {
  color: #21652f;
  background: #ddf5e2;
}

.status-pill.cancelled {
  color: #8e2f2a;
  background: #ffe4df;
}

.status-pill.hold {
  color: #385777;
  background: #e5eef8;
}

.order-history-list,
.mini-list {
  display: grid;
  gap: 10px;
}

.order-history-row,
.mini-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 12px 14px;
}

.order-history-row div,
.mini-list-row {
  min-width: 0;
}

.order-history-row strong,
.mini-list-row strong {
  color: #14292d;
}

.order-history-row span,
.order-history-row small,
.mini-list-row span {
  color: var(--muted);
  font-weight: 800;
}

.compact {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.subtle-note {
  color: var(--muted);
  font-weight: 800;
}

/* download.css */
.download-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 80px max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    url("../assets/hero-dashboard.png") center / cover;
}

.download-copy {
  max-width: 700px;
}

.download-layout {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
}

.download-card {
  display: grid;
  gap: 28px;
  align-content: space-between;
}

.primary-download {
  background: #f7fcf9;
  border-color: #a9d3c4;
}

.version {
  color: var(--teal-dark) !important;
  font-size: 28px;
  font-weight: 900;
}

.notice-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.download-status {
  width: min(1180px, calc(100% - 32px));
  margin: -30px auto 24px;
  border: 1px solid #ecd99f;
  border-radius: 8px;
  padding: 16px 18px;
  color: #765b14;
  background: #fff8de;
  font-weight: 800;
}

.download-status.ready {
  border-color: #a9d3c4;
  color: #21652f;
  background: #e9f8ed;
}

.download-gate-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.download-gate-panel h2 {
  margin: 8px 0 8px;
  font-size: 24px;
}

.download-gate-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.download-gate-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.download-section .download-file-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
}

/* admin.css */
.admin-page {
  background: #eef3f1;
}

.admin-page [data-admin-login-area] .auth-intro {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.admin-page [data-admin-login-area] .auth-intro .eyebrow {
  justify-content: center;
}

.admin-auth-grid {
  display: block;
}

.admin-auth-grid > .form-card {
  width: min(560px, 100%);
  margin: 0 auto;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  padding: 72px 0 92px;
}

.admin-shell[hidden] {
  display: none !important;
}

.admin-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.admin-profile,
.admin-card,
.admin-metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 25, 29, 0.06);
}

.admin-profile {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.admin-profile span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-profile button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.admin-menu {
  display: grid;
  gap: 4px;
  padding: 0 0 0 8px;
}

.admin-menu a {
  border-radius: 8px;
  padding: 12px 10px;
  color: #34494e;
  font-weight: 900;
}

.admin-menu a.active,
.admin-menu a:hover {
  background: #fff;
  color: var(--teal-dark);
}

.admin-content {
  min-width: 0;
}

.admin-panel {
  display: grid;
  gap: 24px;
}

.admin-panel[hidden] {
  display: none !important;
}

.admin-panel h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-metric-card {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.admin-metric-card span {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.admin-metric-card strong {
  color: #14292d;
  font-size: 34px;
  line-height: 1;
}

.admin-metric-card small {
  color: var(--muted);
  font-weight: 800;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.admin-customer-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.admin-customer-workspace > .admin-card {
  min-height: 0;
  overflow: hidden;
}

.admin-customer-workspace > .admin-card:first-child {
  height: clamp(420px, 52vh, 640px);
  grid-template-rows: auto minmax(0, 1fr);
}

.admin-customer-list {
  min-height: 0;
  height: 100%;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-gutter: stable;
}

.admin-customer-detail-card {
  position: static;
  align-content: start;
  height: clamp(280px, 38vh, 500px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.admin-customer-workspace > .admin-customer-detail-card {
  overflow-y: auto;
}

.admin-card h2 {
  margin: 0;
  font-size: 22px;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-card-head input {
  width: min(360px, 100%);
}

.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-filter-tabs button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfdfc;
  color: #34494e;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.admin-filter-tabs button.active,
.admin-filter-tabs button:hover {
  border-color: #b7d3d2;
  background: #eaf6f2;
  color: var(--teal-dark);
}

.admin-customer-workspace .admin-card-head {
  gap: 12px;
}

.admin-customer-workspace .admin-card-head h2 {
  white-space: nowrap;
}

.admin-customer-workspace .admin-card-head input {
  width: min(300px, 58%);
  padding: 11px 12px;
}

.admin-subtle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-list-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.admin-order-row,
.admin-license-row {
  grid-template-columns: minmax(180px, 1fr) minmax(145px, 0.75fr) minmax(220px, 1.1fr) auto;
  gap: 14px;
}

[data-admin-license-list] {
  display: grid;
  gap: 14px;
}

.admin-license-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 14px 16px;
  font-size: 14px;
}

.admin-license-card.blocked {
  border-color: #efcbc6;
  background: #fffafa;
}

.admin-license-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.admin-license-customer {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-license-company {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.admin-license-contact {
  color: #34494e;
  font-size: 13px;
  font-weight: 900;
}

.admin-license-customer strong {
  color: #14292d;
  font-size: 18px;
  line-height: 1.25;
}

.admin-license-customer small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-license-state {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 96px;
  text-align: right;
}

.admin-license-state small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-license-body {
  display: grid;
  gap: 10px;
}

.admin-license-summary {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0;
}

.admin-license-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-license-summary p {
  display: grid;
  gap: 3px;
  margin: 0;
  border-top: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 7px 9px;
  font-size: 12px;
  line-height: 1.25;
}

.admin-license-summary p:first-child {
  padding-top: 7px;
}

.admin-license-summary strong {
  color: #34494e;
  white-space: nowrap;
}

.admin-license-summary span {
  color: var(--text);
  text-align: left;
  overflow-wrap: anywhere;
}

.admin-license-devices {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.admin-user-session-list {
  display: grid;
  gap: 4px;
  min-width: 0;
  overflow-x: hidden;
}

.admin-user-session-columns {
  display: block;
  min-width: 0;
  padding: 0 6px;
  color: #526269;
  font-size: 10px;
  font-weight: 900;
}

.admin-device-column-head,
.admin-session-chip {
  display: grid;
  grid-template-columns: minmax(82px, .8fr) minmax(72px, .62fr) minmax(130px, 1.55fr) minmax(52px, .5fr) 34px;
  gap: 5px;
  align-items: center;
}

.admin-device-column-head {
  padding: 4px 6px;
  border-left: 1px solid var(--line);
  background: #eef3f1;
}

.admin-user-session-row {
  display: block;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  min-width: 0;
}

.admin-user-identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 6px;
  align-items: start;
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-user-identity:hover,
.admin-user-identity:focus-visible,
.admin-user-identity[aria-expanded="true"] {
  background: #eef7f4;
  outline: 0;
}

.admin-user-session-chevron {
  align-self: center;
  transition: transform .16s ease;
}

.admin-user-identity[aria-expanded="true"] .admin-user-session-chevron { transform: rotate(180deg); }

.admin-user-session-panel { padding: 0 6px 6px; }
.admin-user-session-panel[hidden] { display: none; }

.admin-user-identity .license-device-app {
  margin: 0;
  min-height: 18px;
  padding: 0 6px;
  font-size: 10px;
}

.admin-user-identity strong,
.admin-user-identity small,
.admin-session-chip strong,
.admin-session-chip small {
  display: block;
}

.admin-user-identity small,
.admin-session-chip small,
.admin-no-session {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
}

.admin-user-identity strong {
  font-size: 13px;
  line-height: 1.1;
}

.admin-user-session-devices {
  display: grid;
  gap: 2px;
  min-width: 0;
  border-left: 0;
  padding-left: 0;
}

.admin-session-chip {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 24px;
  padding: 2px 6px 2px 20px;
  border-radius: 5px;
  background: #f2f4f3;
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease;
}

.admin-session-chip::before {
  content: '›';
  position: absolute;
  left: 7px;
  top: 50%;
  color: #526269;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .15s ease;
}

.admin-session-chip[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(90deg);
}

.admin-session-chip > strong {
  font-size: 12px;
  line-height: 1.1;
}

.admin-session-chip > span {
  font-size: 11px;
  line-height: 1.1;
}

.admin-session-chip .text-button.compact {
  min-height: 18px;
  padding: 0 2px;
  font-size: 10px;
  line-height: 1;
}

.admin-no-session {
  display: flex;
  align-items: center;
  min-height: 24px;
  border-radius: 5px;
  background: #f6f8f7;
  padding: 0 6px;
}

.admin-session-chip:hover,
.admin-session-chip:focus-visible,
.admin-session-chip[aria-expanded="true"] {
  background: #e8f2ef;
  box-shadow: inset 3px 0 0 var(--teal-dark);
  outline: 0;
}

.admin-session-chip > strong,
.admin-session-chip > span,
.admin-session-chip > small {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.admin-device-id {
  color: #1f5262;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 900;
}

.admin-device-registration {
  color: #147247;
  font-size: 10px;
  font-weight: 900;
}

.admin-device-history-retained {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.admin-session-entry {
  min-width: 0;
}

.admin-device-history {
  display: grid;
  gap: 0;
  margin: 3px 0 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6f8f7;
  padding: 3px 0;
}

.admin-device-history[hidden] {
  display: none;
}

.admin-device-history p {
  display: grid;
  grid-template-columns: minmax(82px, .8fr) minmax(72px, .62fr) minmax(130px, 1.55fr) minmax(52px, .5fr) 34px;
  gap: 5px;
  align-items: center;
  margin: 0;
  padding: 4px 6px 4px 20px;
  font-size: 11px;
}

.admin-device-history p.empty {
  display: block;
}

.admin-device-history time {
  position: relative;
  grid-column: 3;
  padding-left: 18px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.admin-device-history time::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9da9ae;
  transform: translateY(-50%);
}

.admin-device-history p:not(:last-child) time::after {
  content: '';
  position: absolute;
  left: 6.5px;
  top: 50%;
  width: 1px;
  height: calc(100% + 8px);
  background: #c9d0d3;
}

.admin-device-history strong {
  grid-column: 4;
  color: #526269;
  font-weight: 800;
}

.admin-license-devices-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-license-devices-head strong,
.admin-license-devices-head span {
  color: #14292d;
  font-size: 14px;
  font-weight: 900;
}

.admin-license-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 2px;
}

.admin-service-limit-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.admin-service-limit-form label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34494e;
  font-size: 12px;
  font-weight: 900;
}

.admin-service-limit-form input {
  width: 54px;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 6px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.admin-license-alert {
  color: #c13a3a;
  font-size: 12px;
  font-weight: 900;
}

.compact-empty {
  padding: 10px 12px;
}

.admin-device-list {
  display: grid;
  gap: 8px;
}

.license-device-app {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  margin-bottom: 7px;
  background: #e8f4f2;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: normal;
}

.license-device-app.server {
  background: #fff4d6;
  color: #7a5200;
}

.license-device-app.client {
  background: #e8f4f2;
  color: var(--teal-dark);
}

.license-device-app.unknown {
  background: #edf0f0;
  color: #536166;
}

.license-device-connection {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin: 0 0 7px 6px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  vertical-align: top;
}

.license-device-connection.active {
  background: #e7f8ed;
  color: #147247;
}

.license-device-connection.logout {
  background: #edf0f0;
  color: #536166;
}

.license-device-connection.blocked {
  background: #fff0ee;
  color: #b42318;
}

.admin-device-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
}

.admin-device-row strong,
.admin-device-row small {
  display: block;
  overflow-wrap: anywhere;
}

.admin-device-row strong {
  color: #102427;
  font-size: 14px;
  line-height: 1.25;
}

.admin-device-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.admin-device-row.blocked {
  background: #fff8f7;
  border-color: #f0cbc5;
}

.admin-customer-row {
  grid-template-columns: minmax(150px, 1.35fr) minmax(125px, 0.9fr) minmax(86px, auto);
  gap: 12px;
  min-height: 58px;
  border-radius: 8px;
  padding: 9px 12px;
}

.admin-customer-identity {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
}

.admin-customer-identity > small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

button.admin-list-row {
  width: 100%;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-customer-row.selected {
  border-radius: 8px;
  background: #f4fbf8;
}

.admin-customer-row:hover {
  background: #f8fcfa;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 8px;
  border-radius: 999px;
  background: #eef7f3;
  color: var(--teal-dark);
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
  vertical-align: middle;
}

.admin-customer-row > div:last-child {
  justify-items: end;
  text-align: right;
}

.admin-customer-row .status-pill {
  padding: 4px 9px;
  font-size: 12px;
}

.admin-list-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-list-row:last-child {
  padding-bottom: 0;
}

.admin-list-row div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-list-row .admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-list-row strong {
  color: #14292d;
}

.admin-list-row span,
.admin-list-row small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-customer-list .admin-customer-row:first-child {
  padding-top: 9px;
}

.admin-customer-list .admin-customer-row:last-child {
  padding-bottom: 9px;
}

.admin-customer-row div {
  gap: 2px;
}

.admin-customer-row strong,
.admin-customer-row span,
.admin-customer-row small {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  overflow-wrap: normal;
  text-overflow: ellipsis;
}

.admin-list-row.action-row {
  grid-template-columns: 1.15fr 1fr auto;
}

.admin-list-row.compact-row {
  grid-template-columns: 1.25fr 1fr auto;
}

.admin-empty {
  border: 1px dashed #c9d8d5;
  border-radius: 8px;
  background: #fbfdfc;
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.admin-detail-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 10px 12px;
}

.admin-detail-grid p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 9px 0 0;
}

.admin-detail-grid p:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-detail-grid span {
  color: var(--muted);
  text-align: right;
  overflow-wrap: anywhere;
}

.admin-detail-section {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.admin-detail-section h3 {
  margin: 0;
  color: #14292d;
  font-size: 18px;
}

.admin-reset-steps {
  display: grid;
  gap: 8px;
  border: 1px solid #dce8e4;
  border-radius: 8px;
  background: #f8fbfa;
  padding: 12px;
  color: #314a50;
  font-size: 13px;
  line-height: 1.55;
}

.admin-reset-steps-primary {
  border-color: #cde7dd;
  background: #f4fbf7;
}

.admin-reset-steps strong {
  color: #102427;
}

.admin-reset-steps ol {
  margin: 0;
  padding-left: 18px;
}

.admin-form {
  width: min(720px, 100%);
}

.admin-data-list {
  display: grid;
  gap: 8px;
}

.admin-data-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.admin-customer-detail-card .admin-data-list {
  gap: 0;
}

.admin-customer-detail-card .admin-data-list p {
  padding: 8px 0 0;
}

.admin-customer-detail-card .admin-list-row.compact-row {
  grid-template-columns: minmax(160px, 1.2fr) minmax(120px, 0.8fr) auto;
  gap: 10px;
  padding: 10px 0;
}

.admin-customer-detail-card .admin-list-row.compact-row span,
.admin-customer-detail-card .admin-list-row.compact-row small {
  white-space: nowrap;
  overflow: hidden;
  overflow-wrap: normal;
  text-overflow: ellipsis;
}

.admin-data-list p:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-data-list span {
  color: var(--muted);
  text-align: right;
}

.admin-form textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.admin-form .check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.admin-form .check-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.admin-list-row .danger-text {
  color: #c13a3a;
}

/* policy.css */
.simple-policy-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 18px max(24px, calc((100vw - 980px) / 2));
}

.policy-page {
  min-height: calc(100vh - 86px);
  background: var(--soft);
  padding: 64px 20px;
}

.policy-card {
  width: min(860px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 38px;
  box-shadow: 0 12px 28px rgba(17, 25, 29, 0.06);
}

.policy-card h1 {
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 52px);
}

.policy-card h2 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* responsive.css */
@media (max-width: 1220px) {
  .admin-shell {
    width: min(1180px, calc(100% - 32px));
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
  }

  .admin-customer-workspace {
    grid-template-columns: 1fr;
  }

  .admin-customer-workspace > .admin-card {
    height: auto;
    max-height: none;
  }

  .admin-customer-list {
    min-height: 420px;
    max-height: 560px;
  }

  .admin-customer-detail-card {
    position: static;
    max-height: none;
  }
}

@media (max-width: 980px) {
  .top-inner,
  .nav-wrap {
    width: min(100% - 24px, 720px);
  }

  .top-inner,
  .nav-wrap,
  .main-nav,
  .nav-actions {
    flex-wrap: wrap;
  }

  .nav-wrap {
    gap: 16px;
    padding: 12px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .trust-strip,
  .product-layout,
  .price-grid,
  .account-band,
  .support-grid,
  .download-layout,
  .download-variant-grid,
  .license-panel,
  .auth-grid,
  .checkout-layout,
  .mypage-grid,
  .customer-dashboard,
  .dashboard-card-grid,
  .admin-shell,
  .admin-metric-grid {
    grid-template-columns: 1fr;
  }

  .account-dropdown {
    right: auto;
    left: 0;
  }

  .feature-grid,
  .flow-list,
  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-summary {
    position: static;
  }

  .admin-list-row,
  .admin-list-row.action-row,
  .admin-order-row,
  .admin-license-row {
    grid-template-columns: 1fr;
  }

  .admin-license-top,
  .admin-license-body {
    grid-template-columns: 1fr;
  }

  .admin-license-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-user-session-row {
    grid-template-columns: minmax(150px, .7fr) minmax(0, 1.5fr);
  }

  .admin-license-state {
    justify-items: start;
    min-width: 0;
    text-align: left;
  }

  .admin-license-actions {
    justify-content: flex-start;
  }

  .admin-customer-workspace {
    grid-template-columns: 1fr;
  }

  .admin-customer-workspace > .admin-card {
    max-height: none;
  }

  .admin-customer-list {
    min-height: 0;
    max-height: none;
  }

  .admin-customer-detail-card {
    position: static;
    max-height: none;
    overflow-y: auto;
  }

  .admin-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-card-head input {
    width: 100%;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  html {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y;
  }

  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  main,
  .site-header,
  .hero {
    touch-action: pan-y;
  }

  .home-page-header .top-inner {
    width: calc(100% - 20px);
    min-height: 24px;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .home-page-header .nav-wrap {
    width: calc(100% - 20px);
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(118px, 1fr) auto;
    align-items: center;
    gap: 5px 8px;
    padding: 5px 0 7px;
  }

  .home-page-header .brand-logo-link {
    min-width: 0;
    height: 56px;
    display: flex;
    align-items: center;
  }

  .home-page-header .brand-logo {
    width: min(168px, 48vw);
    height: 54px;
    object-fit: contain;
    object-position: left center;
  }

  .home-page-header .nav-actions {
    width: auto;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    align-items: center;
    gap: 3px 8px;
    margin: 0;
    font-size: 11px;
    line-height: 1.1;
  }

  .home-page-header .nav-actions .outline-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 27px;
    padding: 4px 9px;
    border-radius: 7px;
    font-size: 11px;
  }

  .home-page-header .main-nav {
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    overflow: visible;
    padding: 2px 0 0;
  }

  .home-page-header .main-nav a {
    min-width: 0;
    padding: 5px 2px;
    text-align: center;
    font-size: 11px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .home-page-header .nav-wrap { grid-template-columns: minmax(0, 1fr) auto; gap: 6px; }
  .home-page-header .mobile-site-menu-button { display:flex;width:43px;height:40px;flex-direction:column;justify-content:center;gap:5px;padding:8px 9px;border:1px solid #d5b55a;border-radius:11px;background:#f4ead0; }
  .home-page-header .mobile-site-menu-button span { width:100%;height:3px;border-radius:4px;background:#f2b705; }
  .home-page-header .mobile-site-menu-button span:nth-child(2) { background:#211d16; }
  .home-page-header .mobile-site-menu { display:none;position:fixed;top:91px;right:10px;left:10px;z-index:40;max-height:calc(100dvh - 105px);overflow-y:auto;flex-direction:column;gap:10px;padding:14px;border:1px solid var(--line);border-radius:12px;background:#fffdf8;box-shadow:0 18px 42px rgba(17,25,29,.2); }
  .home-page-header.mobile-menu-open .mobile-site-menu { display:flex; }
  .home-page-header .mobile-site-menu .main-nav { display:grid;grid-template-columns:1fr;gap:2px;padding:0; }
  .home-page-header .mobile-site-menu .main-nav a { padding:11px 10px;border-bottom:1px solid var(--line);text-align:left;font-size:14px; }
  .home-page-header .mobile-site-menu .nav-actions { width:100%;display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:13px; }
  .home-page-header .mobile-site-menu .nav-actions > a,
  .home-page-header .mobile-site-menu .nav-actions > .account-menu { min-height:40px;display:flex;align-items:center;justify-content:center;border:1px solid var(--line);border-radius:9px; }

  .top-inner {
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .home-page-header .brand,
  .home-page-header .brand-logo-link {
    min-width: 0;
    width: 100%;
  }

  .home-page-header .brand-logo {
    max-width: 100%;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .account-trigger {
    min-width: 0;
  }

  .account-trigger span {
    max-width: 170px;
  }

  .account-dropdown {
    min-width: min(92vw, 430px);
    grid-template-columns: 1fr;
  }

  .admin-license-summary-grid,
  .admin-user-session-row {
    grid-template-columns: 1fr;
  }

  .admin-license-card {
    padding: 10px;
  }

  .admin-user-session-row {
    gap: 3px;
  }

  .admin-user-session-devices {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 3px;
    padding-left: 0;
  }

  .admin-session-chip {
    width: 100%;
  }

  .admin-user-session-list .admin-user-session-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .admin-user-session-list .admin-user-session-devices {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 3px;
    padding-left: 0;
  }

  .admin-user-session-list .admin-user-session-columns {
    display: none;
  }

  .admin-user-session-list .admin-session-chip {
    grid-template-columns: minmax(72px, .8fr) minmax(64px, .65fr) minmax(100px, 1.25fr) 34px;
  }

  .admin-user-session-list .admin-device-registration {
    display: none;
  }

  .account-dropdown div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 16px;
  }

  .download-list-item,
  .download-gate-panel,
  .download-file-section-header,
  .cart-item,
  .order-history-row,
  .mini-list-row,
  .summary-list p {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .form-row-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-list-item .primary-btn,
  .download-list-item .secondary-btn,
  .download-gate-actions,
  .download-gate-actions .primary-btn,
  .download-gate-actions .secondary-btn,
  .cart-item-side,
  .order-history-row .secondary-btn {
    width: 100%;
    justify-items: stretch;
  }

  .license-key-field {
    grid-template-columns: 1fr;
  }

  .summary-list span {
    text-align: left;
  }

  .text-link {
    font-size: 13px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 17, 20, 0.92), rgba(9, 17, 20, 0.58));
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .account-delete-actions {
    flex-direction: column-reverse;
  }

  .primary-btn,
  .secondary-btn,
  .danger-action-btn,
  .outline-btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .feature-grid,
  .flow-list,
  .field-grid,
  .payment-options {
    grid-template-columns: 1fr;
  }

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

  .customer-dashboard {
    padding-top: 48px;
  }
}
