:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  --blue: #1769e0;
  --blue-deep: #0b3d91;
  --blue-pale: #edf5ff;
  --green: #12855b;
  --surface: #f6f8fb;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

button,
a {
  font: inherit;
}

.closed-site {
  overflow: hidden;
  color: #fff;
  background: #06152d;
}

.closed-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 110%, rgba(30, 126, 255, 0.25), transparent 48%),
    #06152d;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.closed-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 64px 56px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(5, 18, 40, 0.68);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  text-align: center;
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 52px;
}

.brand-lockup.compact {
  gap: 9px;
  margin: 0;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 7px;
  border-radius: 11px;
  background: linear-gradient(145deg, #2e8cff, #0d56c4);
  box-shadow: 0 10px 25px rgba(22, 105, 224, 0.3);
  transform: rotate(-4deg);
}

.compact .brand-symbol {
  width: 31px;
  height: 31px;
  gap: 2px;
  padding: 6px;
  border-radius: 9px;
}

.brand-symbol i {
  display: block;
  background: #fff;
}

.brand-word {
  color: inherit;
  font-size: 1.6rem;
  font-weight: 760;
  letter-spacing: -0.055em;
}

.compact .brand-word {
  font-size: 1.28rem;
}

.brand-word span {
  color: #3c9cff;
}

.status-pill,
.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8abfff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-pill {
  padding: 8px 12px;
  border: 1px solid rgba(80, 159, 255, 0.28);
  border-radius: 999px;
  background: rgba(32, 111, 217, 0.09);
}

.status-pill i,
.secure-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(70, 155, 255, 0.1);
}

.eyebrow {
  margin: 34px 0 12px;
  color: #83bafa;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.closed-card h1 {
  max-width: 580px;
  margin: 0 auto;
  font-size: clamp(2.7rem, 7vw, 5.15rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.closed-message {
  max-width: 510px;
  margin: 24px auto 0;
  color: #aebdd2;
  font-size: 1.02rem;
  line-height: 1.75;
}

.closed-line {
  width: 190px;
  height: 2px;
  margin: 45px auto 0;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.09);
}

.closed-line span {
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #3f9eff, transparent);
  animation: scan 3.2s ease-in-out infinite;
}

.ambient {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(77, 162, 255, 0.12);
  border-radius: 50%;
}

.ambient-one {
  top: -220px;
  right: -80px;
}

.ambient-two {
  bottom: -300px;
  left: -120px;
  width: 620px;
  height: 620px;
}

@keyframes scan {
  0%,
  100% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(300%);
  }
}

.portal-site {
  background:
    radial-gradient(circle at 50% 0, rgba(50, 137, 255, 0.1), transparent 30%),
    var(--surface);
}

.portal-shell {
  min-height: 100vh;
  padding: 36px 20px 70px;
}

.order-wrap {
  width: min(880px, 100%);
  margin: 0 auto;
}

.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.language-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.language-tabs a {
  min-width: 38px;
  padding: 7px 8px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.language-tabs a.active {
  color: #fff;
  background: var(--ink);
}

.support-site {
  color: #132238;
  background: #f3f6fa;
}

.support-site > main {
  min-height: 100vh;
}

.support-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.support-header {
  position: sticky;
  z-index: 20;
  top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgb(203 213 225 / 76%);
  border-radius: 8px;
  background: rgb(255 255 255 / 91%);
  box-shadow: 0 12px 36px rgb(15 23 42 / 8%);
  backdrop-filter: blur(16px);
}

.support-brand {
  color: #0f172a;
  text-decoration: none;
}

.support-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.support-nav a {
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 7px;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.support-nav a:hover,
.support-nav a:focus-visible {
  color: #0f172a;
  background: #eef4fb;
  outline: none;
}

.support-language {
  border-color: #d7e0eb;
  box-shadow: none;
}

.support-hero {
  display: grid;
  min-height: min(680px, calc(100vh - 96px));
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(42px, 8vw, 84px) 0 clamp(36px, 6vw, 70px);
}

.support-hero-copy {
  min-width: 0;
}

.support-status,
.support-kicker,
.support-section-heading > span,
.support-guide-card span {
  color: #1769e0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.support-status {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid #bfd7f5;
  border-radius: 8px;
  background: #eef6ff;
}

.support-hero h1 {
  max-width: 640px;
  margin: 0;
  color: #0b1f3a;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.98;
}

.support-hero-copy > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #526173;
  font-size: 1.12rem;
  line-height: 1.72;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.support-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #cbd7e6;
  border-radius: 8px;
  color: #18324f;
  background: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(15 23 42 / 7%);
}

.support-button.primary {
  border-color: #1769e0;
  color: #fff;
  background: #1769e0;
  box-shadow: 0 12px 26px rgb(23 105 224 / 22%);
}

.support-private-note {
  display: inline-flex;
  max-width: 580px;
  padding: 12px 14px;
  border: 1px solid #dce7f5;
  border-radius: 8px;
  color: #43546a;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}

.support-hero-media {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d4dfeb;
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 24px 70px rgb(15 23 42 / 18%);
}

.support-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  background: #111;
}

.support-hero-media figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  color: #dbeafe;
  background: #0d1b2f;
}

.support-hero-media strong {
  color: #fff;
  font-size: 0.95rem;
}

.support-hero-media span {
  color: #aac3df;
  font-size: 0.86rem;
  line-height: 1.45;
}

.support-band {
  padding: clamp(46px, 7vw, 78px) 0;
  border-top: 1px solid #d9e2ee;
}

.support-band-muted {
  position: relative;
}

.support-band-muted::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  content: "";
  background: #eaf0f7;
}

.support-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.support-section-heading h2,
.support-copy-block h2 {
  margin: 9px 0 10px;
  color: #0b1f3a;
  font-size: 2.75rem;
  line-height: 1.05;
}

.support-section-heading p,
.support-copy-block > p {
  margin: 0;
  color: #526173;
  font-size: 1rem;
  line-height: 1.7;
}

.support-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-guide-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #d7e1ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgb(15 23 42 / 8%);
}

.support-guide-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111827;
}

.support-guide-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.support-guide-card h3 {
  margin: 0;
  color: #10233d;
  font-size: 1.2rem;
}

.support-guide-card p {
  margin: 0;
  color: #5c6b7e;
  line-height: 1.58;
}

.support-guide-card a {
  justify-self: start;
  margin-top: 4px;
  color: #1769e0;
  font-weight: 850;
  text-decoration: none;
}

.support-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  gap: clamp(26px, 4.5vw, 56px);
  align-items: center;
}

.support-copy-block {
  min-width: 0;
}

.support-step-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: support-step;
}

.support-step-list li {
  position: relative;
  min-height: 58px;
  padding: 0 0 0 56px;
  counter-increment: support-step;
}

.support-step-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: #1769e0;
  background: #fff;
  content: counter(support-step, decimal-leading-zero);
  font-size: 0.74rem;
  font-weight: 900;
}

.support-step-list strong,
.support-callout-panel strong {
  display: block;
  color: #10233d;
  font-size: 0.98rem;
}

.support-step-list span,
.support-callout-panel span {
  display: block;
  margin-top: 4px;
  color: #5c6b7e;
  line-height: 1.55;
}

.support-inline-note {
  max-width: 760px;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  color: #1e3a8a;
  background: #eff6ff;
  font-weight: 800;
  line-height: 1.55;
}

.support-screenshot {
  margin: 0;
  overflow: hidden;
  border: 1px solid #cbd8e6;
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 18px 45px rgb(15 23 42 / 14%);
}

.support-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.support-notice {
  max-width: 920px;
  margin: 0 0 24px;
}

.public-guide {
  margin-top: 0;
  border-radius: 8px;
}

.public-guide .office-guide-header,
.public-guide .office-guide-controls {
  background: #fff;
}

.public-guide .office-guide-pages {
  background: #fbfdff;
}

.support-callout-panel {
  display: grid;
  gap: 4px;
  max-width: 760px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #c7d8eb;
  border-radius: 8px;
  background: #f8fbff;
}

.support-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.support-help-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid #d7e1ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(15 23 42 / 6%);
}

.support-help-grid span {
  display: inline-grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 7px;
  color: #1769e0;
  background: #eef6ff;
  font-size: 0.74rem;
  font-weight: 900;
}

.support-help-grid h3 {
  margin: 0 0 9px;
  color: #10233d;
  font-size: 1.05rem;
}

.support-help-grid p {
  margin: 0;
  color: #5c6b7e;
  line-height: 1.58;
}

.support-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #d9e2ee;
  color: #64748b;
}

.support-footer span {
  color: #0f172a;
  font-weight: 850;
}

.support-footer p {
  max-width: 740px;
  margin: 0;
  line-height: 1.55;
  text-align: right;
}

.order-card,
.portal-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.08);
}

.order-card {
  overflow: hidden;
}

.order-summary {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px 50px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 90% -20%, rgba(73, 165, 255, 0.35), transparent 40%),
    linear-gradient(145deg, #071b3a, #0b2c60);
}

.secure-label {
  color: #82bfff;
}

.order-summary h1 {
  max-width: 580px;
  margin: 15px 0 12px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.verified-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #a8e8d0;
  font-size: 0.85rem;
}

.verified-line span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #063f2a;
  background: #72dbb0;
  font-size: 0.72rem;
  font-weight: 900;
}

.order-number {
  flex: 0 0 auto;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
}

.order-number span {
  display: block;
  margin-bottom: 4px;
  color: #91a8c5;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.order-number strong {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.86rem;
}

.key-panel {
  margin: 34px 50px 0;
  padding: 22px 24px;
  border: 1px solid #cfe2fb;
  border-radius: 14px;
  background: var(--blue-pale);
}

.key-panel > span {
  color: #315b8e;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.key-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.key-row code {
  overflow-wrap: anywhere;
  color: #102d51;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.key-row button {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 9px 13px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.cid-step-key {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #cfe2fb;
  border-radius: 12px;
  background: #f3f8ff;
}

.cid-step-key span {
  color: #315b8e;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cid-step-key code {
  color: #102d51;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(1rem, 3vw, 1.22rem);
  font-weight: 800;
  letter-spacing: .06em;
  overflow-wrap: anywhere;
}

.cid-step-key button {
  justify-self: start;
  padding: 9px 13px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
}

.instruction-panel {
  padding: 42px 50px 45px;
}

.office365-panel {
  padding: 42px 50px 45px;
}

.cid-panel {
  padding: 42px 50px 45px;
}

.cid-panel > p {
  max-width: 680px;
  margin: -10px 0 24px;
  color: #52647c;
  line-height: 1.65;
}

.cid-upload-form {
  display: grid;
  max-width: 680px;
  gap: 11px;
}

.cid-guide .cid-upload-form {
  max-width: none;
  margin-top: 20px;
}

.cid-input-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.cid-input-grid > div {
  display: grid;
  gap: 10px;
}

.cid-paste-box {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 18px;
  border: 1px dashed #8bb5ef;
  border-radius: 14px;
  color: #315b8e;
  background:
    radial-gradient(circle at 50% 0, rgb(23 105 224 / 9%), transparent 45%),
    #f7fbff;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.cid-paste-box::before {
  width: 34px;
  height: 34px;
  margin-bottom: 2px;
  border: 3px solid #bfdbfe;
  border-top-color: var(--blue);
  border-radius: 50%;
  content: "";
  animation: cid-spin 1.4s linear infinite;
}

.cid-paste-box strong {
  color: #0b2548;
  font-size: 0.92rem;
}

.cid-paste-box span,
.cid-paste-box em {
  max-width: 320px;
  color: #55708f;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.5;
}

.cid-paste-box em {
  color: #1769e0;
  font-weight: 750;
}

.cid-paste-box:hover,
.cid-paste-box:focus,
.cid-paste-box.is-dragging {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgb(23 105 224 / 10%);
  outline: none;
  transform: translateY(-1px);
}

.cid-paste-box.has-file {
  border-style: solid;
  border-color: #86efac;
  background:
    radial-gradient(circle at 50% 0, rgb(18 133 91 / 10%), transparent 45%),
    #f0fdf4;
}

.cid-paste-box.has-file::before {
  display: grid;
  place-items: center;
  border: 0;
  color: #047857;
  background: #bbf7d0;
  content: "OK";
  animation: none;
  font-weight: 900;
}

.cid-paste-box.is-error {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgb(248 113 113 / 12%);
}

.cid-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cid-wait-status {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #cfe2fb;
  border-radius: 12px;
  color: #315b8e;
  background: #f3f8ff;
}

.cid-wait-status > span {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgb(23 105 224 / 28%);
  animation: cid-pulse 1.8s ease-out infinite;
}

.cid-wait-status strong,
.cid-wait-status small {
  display: block;
}

.cid-wait-status strong {
  color: #0b2548;
  font-size: 0.84rem;
}

.cid-wait-status small {
  margin-top: 3px;
  color: #55708f;
  line-height: 1.45;
}

.cid-console {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #20324d;
  border-radius: 24px;
  color: #eef6ff;
  background:
    radial-gradient(circle at 80% 10%, rgb(39 119 255 / 14%), transparent 32%),
    linear-gradient(180deg, #0b1729 0%, #07111f 100%);
  box-shadow: 0 24px 60px rgb(3 10 24 / 20%);
}

.cid-console-help {
  padding: 20px 22px;
  border: 1px solid #243650;
  border-radius: 20px;
  background: #151f31;
  color: #f8fbff;
  line-height: 1.9;
}

.cid-console-help p {
  margin: 0;
}

.cid-console .cid-error {
  margin: 0;
  border-color: #7f1d1d;
  color: #fecaca;
  background: #2a1015;
}

.cid-console-status {
  display: grid;
  gap: 15px;
  padding: 20px;
  border: 1px solid #243650;
  border-radius: 22px;
  background: #151f31;
}

.cid-console-status-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cid-console-status-head strong,
.cid-console-status-head span {
  display: block;
}

.cid-console-status-head strong {
  color: #fff;
  font-size: 1.02rem;
}

.cid-console-status-head span {
  margin-top: 3px;
  color: #b8cff1;
  line-height: 1.45;
}

.cid-console-orb {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid #2e7a92;
  border-radius: 50%;
  background: #173041;
}

.cid-console-orb::before {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: #4ee6d8;
  box-shadow: 0 0 0 0 rgb(78 230 216 / 36%);
  content: "";
  animation: cid-console-pulse 1.7s ease-out infinite;
}

.cid-console.is-processing .cid-console-orb::after {
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-top-color: #f8c94a;
  border-radius: 50%;
  content: "";
  animation: cid-spin 1.1s linear infinite;
}

.cid-console-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 12px;
}

.cid-console-panels > div {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #2b3d59;
  border-radius: 13px;
  background: #1b2638;
}

.cid-console-panels span {
  color: #b7cff2;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cid-console-panels code {
  color: #ffd95a;
  font-family: Consolas, "Courier New", monospace;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: normal;
}

.cid-console-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cid-console-stages span {
  position: relative;
  padding: 9px 11px 9px 26px;
  border-radius: 999px;
  color: #bfd6f5;
  background: #222c3d;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cid-console-stages span::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #61718a;
  content: "";
  transform: translateY(-50%);
}

.cid-console-stages span.done,
.cid-console-stages span.active {
  color: #dffeff;
  background: #173746;
}

.cid-console-stages span.done::before,
.cid-console-stages span.active::before {
  background: #56f2a7;
}

.cid-console-stages span.active::before {
  box-shadow: 0 0 0 0 rgb(86 242 167 / 30%);
  animation: cid-console-pulse 1.7s ease-out infinite;
}

.cid-console-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cid-console-chips span {
  padding: 8px 10px;
  border-radius: 10px;
  color: #d5e7ff;
  background: #222c3d;
  font-family: Consolas, "Courier New", monospace;
  font-size: .72rem;
  font-weight: 850;
}

.cid-console-form {
  display: grid;
  gap: 8px;
  max-width: none;
}

.cid-console-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #243650;
  border-radius: 22px;
  background: #111c2d;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.cid-console-input.is-dragging,
.cid-console-input.has-file {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 4px rgb(45 212 191 / 12%);
}

.cid-console-input.is-error {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgb(248 113 113 / 12%);
}

.cid-console-plus,
.cid-console-send {
  display: inline-grid;
  min-width: 0;
  margin: 0;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.cid-console-plus {
  width: 46px;
  height: 46px;
  border: 1px solid #33445e;
  border-radius: 50%;
  color: #d8e9ff;
  background: #202b3d;
  font-size: 1.25rem;
}

.cid-console-send {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #061326;
  background: #7dd3fc;
  font-weight: 900;
}

.cid-console-plus:disabled,
.cid-console-send:disabled,
.cid-console-input textarea:disabled {
  cursor: wait;
  opacity: .62;
}

.cid-console-input textarea {
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  color: #d8e9ff;
  background: transparent;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
  outline: none;
}

.cid-console-input textarea::placeholder {
  color: #788ca8;
}

.cid-console-file {
  color: #8da6c8;
  font-size: .78rem;
  font-style: normal;
}

@keyframes cid-console-pulse {
  70% {
    box-shadow: 0 0 0 13px rgb(78 230 216 / 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(78 230 216 / 0);
  }
}

@keyframes cid-pulse {
  70% {
    box-shadow: 0 0 0 12px rgb(23 105 224 / 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(23 105 224 / 0);
  }
}

@keyframes cid-spin {
  to {
    transform: rotate(360deg);
  }
}

.cid-upload-form label {
  color: #253b57;
  font-size: .78rem;
  font-weight: 750;
}

.cid-upload-form input[type="file"],
.cid-upload-form textarea {
  padding: 16px;
  border: 1px dashed #9eb9db;
  border-radius: 12px;
  color: #315b8e;
  background: #f7fbff;
}

.cid-upload-form textarea {
  min-height: 110px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}

.cid-upload-form small {
  color: var(--muted);
}

.cid-upload-form button {
  justify-self: start;
  margin-top: 5px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-weight: 750;
}

.cid-upload-form button.secondary {
  margin-left: 10px;
  color: #1769e0;
  background: #e8f1ff;
}

.cid-console-form button.cid-console-plus,
.cid-console-form button.cid-console-send {
  display: inline-grid;
  min-width: 0;
  margin: 0;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.cid-console-form button.cid-console-plus {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #33445e;
  border-radius: 50%;
  color: #d8e9ff;
  background: #202b3d;
  font-size: 1.25rem;
}

.cid-console-form button.cid-console-send {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #061326;
  background: #7dd3fc;
  font-weight: 900;
}

.cid-console-form button.cid-console-plus:disabled,
.cid-console-form button.cid-console-send:disabled,
.cid-console-input textarea:disabled {
  cursor: wait;
  opacity: .62;
}

.cid-console-form .cid-console-input textarea {
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  color: #d8e9ff;
  background: transparent;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
  outline: none;
}

.cid-console-form .cid-console-input textarea::placeholder {
  color: #788ca8;
}

.cid-chat-ready {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 15px 16px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  color: #064e3b;
  background: #ecfdf5;
}

.cid-chat-ready > span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #10b981;
  font-weight: 900;
}

.cid-chat-ready strong,
.cid-chat-ready small {
  display: block;
}

.cid-chat-ready small {
  margin-top: 3px;
  color: #047857;
  line-height: 1.5;
}

.cid-chatbox {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #20324d;
  border-radius: 20px;
  color: #eef6ff;
  background:
    radial-gradient(circle at 92% 12%, rgb(45 212 191 / 12%), transparent 34%),
    linear-gradient(180deg, #0b1729 0%, #07111f 100%);
  box-shadow: 0 18px 45px rgb(3 10 24 / 16%);
}

.cid-chatbox .cid-error {
  margin: 0;
  border-color: #7f1d1d;
  color: #fecaca;
  background: #2a1015;
}

.cid-chatbox.is-ready {
  margin-top: 14px;
}

.cid-chat-message {
  display: flex;
}

.cid-chat-message-user {
  justify-content: flex-end;
}

.cid-chat-bubble {
  max-width: min(100%, 560px);
  padding: 14px 16px;
  border: 1px solid rgb(45 212 191 / 28%);
  border-radius: 20px;
  color: #e9fbff;
  background: rgb(20 184 166 / 16%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%);
}

.cid-chat-user-text {
  overflow-wrap: anywhere;
  color: #f8fbff;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.6;
}

.cid-attachment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cid-attachment-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #bffcf4;
  background: rgb(15 118 110 / 36%);
  font-size: .76rem;
  font-weight: 850;
}

.cid-progress-panel,
.cid-result-card {
  display: grid;
  gap: 14px;
  padding: 17px;
  border: 1px solid #243650;
  border-radius: 18px;
  background: #151f31;
}

.cid-progress-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.cid-progress-orbit {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(78 230 216 / 34%);
  border-radius: 50%;
  background: rgb(78 230 216 / 8%);
}

.cid-progress-orbit::before {
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-top-color: #4ee6d8;
  border-right-color: #ffd95a;
  border-radius: inherit;
  content: "";
  animation: cid-spin 1.05s linear infinite;
}

.cid-progress-orbit > span {
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: #4ee6d8;
  box-shadow: 0 0 18px rgb(78 230 216 / 70%);
  animation: cid-console-pulse 1.25s ease-in-out infinite;
}

.cid-progress-title {
  color: #fff;
  font-size: 1.03rem;
  font-weight: 900;
}

.cid-progress-copy {
  margin-top: 3px;
  color: #b8cff1;
  line-height: 1.45;
}

.cid-progress-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, .75fr);
  gap: 11px;
}

.cid-progress-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 14px;
  background: rgb(255 255 255 / 4%);
}

.cid-progress-field span,
.cid-stage-row,
.cid-timer-grid span {
  color: #a9bedc;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cid-progress-field strong {
  overflow-wrap: anywhere;
  color: #ffd95a;
  font-family: Consolas, "Courier New", monospace;
  font-size: .93rem;
  line-height: 1.45;
}

.cid-stage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.cid-stage-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgb(255 255 255 / 5%);
}

.cid-stage-row span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cid-stage-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgb(255 255 255 / 28%);
}

.cid-stage-row.is-active {
  color: #e8fffb;
  background: rgb(45 212 191 / 16%);
}

.cid-stage-row.is-active .cid-stage-dot {
  background: #4ee6d8;
  box-shadow: 0 0 16px rgb(78 230 216 / 74%);
  animation: cid-console-pulse 1.15s ease-in-out infinite;
}

.cid-stage-row.is-done {
  color: #bbf7d0;
}

.cid-stage-row.is-done .cid-stage-dot {
  background: #5ce58c;
}

.cid-timer-grid,
.cid-duration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cid-timer-grid > div,
.cid-duration-grid > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 10px;
  color: #f8fbff;
  background: rgb(255 255 255 / 6%);
}

.cid-timer-grid strong,
.cid-duration-grid strong {
  color: #ffd95a;
  font-family: Consolas, "Courier New", monospace;
  font-size: .82rem;
}

.cid-duration-grid-standalone {
  margin-top: 3px;
}

.cid-result-card {
  border-color: rgb(34 197 94 / 30%);
  background:
    radial-gradient(circle at top left, rgb(34 197 94 / 12%), transparent 44%),
    #12271f;
}

.cid-result-card > div:not(.cid-duration-grid) {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.cid-result-card strong {
  color: #ffd95a;
}

.cid-result-card span,
.cid-result-card code {
  overflow-wrap: anywhere;
  color: #eef6ff;
  font-family: Consolas, "Courier New", monospace;
}

.cid-terminal-copy {
  display: inline;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.cid-terminal-copy.is-success code {
  color: #61f594;
}

.cid-terminal-copy:hover code {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cid-chat-attachment {
  justify-self: end;
  max-width: min(100%, 230px);
  padding: 12px 14px;
  border: 1px solid rgb(45 212 191 / 28%);
  border-radius: 18px;
  color: #e9fbff;
  background: rgb(20 184 166 / 16%);
}

.cid-chat-attachment.is-hidden {
  display: none;
}

.cid-chat-attachment strong,
.cid-chat-attachment small {
  display: block;
}

.cid-chat-attachment small {
  margin-top: 4px;
  color: #bffcf4;
  overflow-wrap: anywhere;
}

.cid-chat-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid #243650;
  border-radius: 16px;
  background: #151f31;
}

.cid-chat-orb {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid #2e7a92;
  border-radius: 50%;
  background: #173041;
}

.cid-chat-orb::before {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #4ee6d8;
  box-shadow: 0 0 0 0 rgb(78 230 216 / 36%);
  content: "";
  animation: cid-console-pulse 1.7s ease-out infinite;
}

.cid-chat-status strong,
.cid-chat-status small,
.cid-chat-status code {
  display: block;
}

.cid-chat-status strong {
  color: #fff;
}

.cid-chat-status small {
  margin-top: 3px;
  color: #b8cff1;
  line-height: 1.45;
}

.cid-chat-status code {
  margin-top: 10px;
  color: #ffd95a;
  font-family: Consolas, "Courier New", monospace;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.cid-chat-status .office-progress {
  margin-top: 12px;
  background: #253149;
}

.cid-chat-form {
  display: grid;
  gap: 8px;
  max-width: none;
}

.cid-chat-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 11px;
  border: 1px solid #243650;
  border-radius: 18px;
  background: #111c2d;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.cid-chat-input.is-dragging,
.cid-chat-input.has-file {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 4px rgb(45 212 191 / 12%);
}

.cid-chat-input.is-error {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgb(248 113 113 / 12%);
}

.cid-chat-form button.cid-chat-plus,
.cid-chat-form button.cid-chat-send {
  display: inline-grid;
  min-width: 0;
  margin: 0;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.cid-chat-form button.cid-chat-plus {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #33445e;
  border-radius: 50%;
  color: #d8e9ff;
  background: #202b3d;
  font-size: 1.2rem;
}

.cid-chat-form button.cid-chat-send {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #061326;
  background: #7dd3fc;
  font-weight: 900;
}

.cid-chat-form button.cid-chat-plus:disabled,
.cid-chat-form button.cid-chat-send:disabled,
.cid-chat-form .cid-chat-input textarea:disabled {
  cursor: wait;
  opacity: .62;
}

.cid-chat-form .cid-chat-input textarea {
  min-height: 44px;
  padding: 9px 0;
  border: 0;
  color: #d8e9ff;
  background: transparent;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
  outline: none;
}

.cid-chat-form .cid-chat-input textarea::placeholder {
  color: #788ca8;
}

.cid-chat-file {
  color: #8da6c8;
  font-size: .78rem;
  font-style: normal;
}

.cid-ready {
  margin-bottom: 22px;
}

.cid-results {
  display: grid;
  gap: 12px;
}

.cid-results > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #cfe2fb;
  border-radius: 12px;
  background: var(--blue-pale);
}

.cid-results span {
  grid-column: 1 / -1;
  color: #315b8e;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cid-results code {
  overflow-wrap: anywhere;
  color: #102d51;
  font-size: clamp(.9rem, 2.4vw, 1.12rem);
  font-weight: 700;
  letter-spacing: .04em;
}

.cid-results button {
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-weight: 700;
}

.cid-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.cid-group-button {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #cfe2fb;
  border-radius: 12px;
  color: #0b2548;
  background: #f3f8ff;
  cursor: pointer;
  text-align: left;
}

.cid-group-button span {
  color: #1769e0;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.cid-group-button code {
  overflow-wrap: anywhere;
  color: #102d51;
  font-size: .98rem;
  font-weight: 800;
}

.cid-waiting-note {
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: #9a3412;
  background: #fff7ed;
  font-weight: 700;
}

.cid-error {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #991b1b;
  background: #fef2f2;
}

.cid-error h2,
.cid-error p {
  margin: 0;
}

.cid-error p {
  margin-top: 6px;
}

.office365-panel > p {
  max-width: 680px;
  margin: -10px 0 26px;
  color: #52647c;
  line-height: 1.65;
}

.office365-form {
  display: grid;
  max-width: 680px;
  gap: 9px;
}

.office365-form label {
  color: #253b57;
  font-size: .78rem;
  font-weight: 750;
}

.office365-name-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 5px;
}

.office365-name-row > div {
  display: grid;
  gap: 9px;
}

.office365-name-row input {
  min-width: 0;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bfd0e4;
  border-radius: 10px;
  font: inherit;
}

.office365-name-row input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(37, 99, 235, .12);
}

.office365-input-row {
  display: flex;
  gap: 10px;
}

.office365-input-row input {
  min-width: 0;
  flex: 1;
  padding: 13px 14px;
  border: 1px solid #bfd0e4;
  border-radius: 10px;
  font: inherit;
}

.office365-input-row input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(37, 99, 235, .12);
}

.office365-input-row button {
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-weight: 750;
}

.office365-form small {
  color: var(--muted);
  line-height: 1.5;
}

.office365-success {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.office365-check {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #075f42;
  background: #d9f7e9;
  font-weight: 900;
}

.office365-success h2,
.office365-success p {
  margin: 0;
}

.office365-success p {
  margin-top: 6px;
  color: var(--muted);
}

.office365-success code {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #163b69;
  background: var(--blue-pale);
  font-size: 1rem;
}

.office365-pending {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  color: #1e40af;
  background: #eff6ff;
}

.key-pending-panel,
.key-error {
  margin: 34px 50px 0;
}

.pending-copy {
  display: grid;
  gap: 5px;
}

.pending-copy strong {
  color: #0b2548;
  font-size: 0.92rem;
}

.pending-copy span {
  color: #55708f;
  font-size: 0.8rem;
  line-height: 1.5;
}

.office-progress {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbeafe;
}

.office-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 12%;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, #1769e0, #5ba6ff);
  transition: width 0.7s ease;
}

.office-progress span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 45%), transparent);
  transform: translateX(-100%);
  animation: office-progress-shimmer 1.5s linear infinite;
}

@keyframes office-progress-shimmer {
  to {
    transform: translateX(100%);
  }
}

.office365-ready {
  margin-bottom: 22px;
}

.office-guide {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgb(11 37 72 / 8%);
}

.office-guide-header {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 26px 20px;
  border-bottom: 1px solid #e7edf5;
  background: linear-gradient(135deg, #f7faff, #eef5ff);
}

.office-guide-header span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-guide-header h2 {
  margin: 7px 0 4px;
  color: #0b2548;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.office-guide-header p {
  max-width: 620px;
  margin: 0;
  color: #667085;
  font-size: 0.82rem;
  line-height: 1.55;
}

.office-guide-dots {
  display: flex;
  gap: 7px;
  padding-bottom: 5px;
}

.office-guide-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: width 0.2s ease, background 0.2s ease;
}

.office-guide-dots i.active {
  width: 24px;
  background: var(--blue);
}

.guide-important-notice {
  position: relative;
  display: grid;
  gap: 5px;
  margin: 18px 26px 0;
  padding: 17px 18px 17px 54px;
  border: 1px solid #facc15;
  border-radius: 15px;
  color: #713f12;
  background:
    radial-gradient(circle at top left, rgb(250 204 21 / 24%), transparent 42%),
    linear-gradient(135deg, #fffbeb, #fff7ed);
  box-shadow: 0 14px 34px rgb(120 53 15 / 10%);
}

.guide-important-notice-standalone {
  margin: 34px 50px 0;
}

.guide-important-notice::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #f59e0b;
  content: "!";
  font-weight: 900;
  box-shadow: 0 0 0 5px rgb(245 158 11 / 16%);
}

.guide-important-notice strong {
  color: #7c2d12;
  font-size: .92rem;
  font-weight: 900;
}

.guide-important-notice p {
  max-width: 760px;
  margin: 0;
  color: #854d0e;
  line-height: 1.55;
}

.office-guide-pages {
  padding: 28px 26px;
}

.office-guide-page {
  min-height: 190px;
  animation: guide-page-in 0.22s ease both;
}

.office-guide-page[hidden] {
  display: none;
}

@keyframes guide-page-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

.guide-step-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.office-guide-page h3 {
  margin: 0 0 9px;
  color: #0b2548;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.office-guide-page > p {
  max-width: 760px;
  margin: 0 0 20px;
  color: #52647a;
  line-height: 1.65;
}

.cid-shortcut-note {
  display: inline-flex;
  max-width: 760px;
  align-items: center;
  margin: -6px 0 20px;
  padding: 11px 14px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  color: #1e3a8a;
  background: #eff6ff;
  font-weight: 800;
  line-height: 1.5;
}

.guide-warning {
  display: flex;
  gap: 13px;
  align-items: center;
  max-width: 760px;
  padding: 16px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: #9a3412;
  background: #fff7ed;
  line-height: 1.55;
}

.guide-warning strong {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #f97316;
}

.guide-office-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.guide-image {
  position: relative;
  width: min(100%, 980px);
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  background: #101010;
  box-shadow: 0 12px 30px rgb(11 37 72 / 14%);
}

.guide-image img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-highlight {
  position: absolute;
  z-index: 2;
  border: 3px solid #ff3131;
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 70%);
  pointer-events: none;
}

.guide-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #ef2626;
  box-shadow: 0 3px 10px rgb(0 0 0 / 35%);
  font-size: 0.78rem;
  font-weight: 900;
  pointer-events: none;
}

.highlight-launcher {
  top: 1.4%;
  left: 24.8%;
  width: 6.4%;
  height: 11.3%;
}

.callout-launcher {
  top: 0.5%;
  left: 30%;
}

.highlight-more-apps {
  top: 60.5%;
  left: 69.3%;
  width: 9.2%;
  height: 17.5%;
}

.callout-more-apps {
  top: 57.8%;
  left: 77%;
}

.highlight-install-apps {
  top: 0.8%;
  left: 90.1%;
  width: 9.5%;
  height: 4.5%;
}

.callout-install-apps {
  top: 4.3%;
  left: 88.5%;
}

.highlight-m365-apps {
  top: 4.8%;
  left: 79.9%;
  width: 19.8%;
  height: 7.8%;
}

.callout-m365-apps {
  top: 11%;
  left: 78.7%;
}

.highlight-install-office {
  top: 33.7%;
  left: 25.9%;
  width: 31.2%;
  height: 6%;
}

.callout-install-office {
  top: 31.8%;
  left: 56%;
}

.office-guide-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 18px 26px;
  border-top: 1px solid #e7edf5;
  background: #fafcff;
}

.office-guide-controls button {
  min-width: 112px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid #cdd8e5;
  border-radius: 10px;
  color: #344054;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.office-guide-controls button.primary {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.office-guide-controls button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.purchase-complete-card {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 34px 50px 0;
  padding: 28px;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  color: #14532d;
  background:
    radial-gradient(circle at top left, rgb(34 197 94 / 18%), transparent 40%),
    linear-gradient(135deg, #f0fdf4, #ecfdf5);
  box-shadow: 0 18px 45px rgb(22 101 52 / 10%);
}

.purchase-complete-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #16a34a;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgb(34 197 94 / 14%);
}

.purchase-complete-card h2 {
  margin: 0 0 6px;
  color: #052e16;
  font-size: 1.35rem;
}

.purchase-complete-card p {
  margin: 0;
  color: #166534;
  line-height: 1.6;
}

.office-credentials {
  display: grid;
  gap: 12px;
}

.office-credentials > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid #dce5f0;
  border-radius: 12px;
  background: #f8fafc;
}

.office-credentials span {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.office-credentials code {
  overflow-wrap: anywhere;
  color: #0b2548;
  font-size: 0.9rem;
  font-weight: 700;
}

.office-credentials button,
.office365-failed button {
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #1769e0;
  font-weight: 700;
  cursor: pointer;
}

.office365-failed {
  padding: 20px;
  border: 1px solid #fecaca;
  border-radius: 12px;
  background: #fff7f7;
}

.office365-failed h2 {
  margin: 0 0 8px;
  color: #991b1b;
}

.office365-failed p {
  margin: 0 0 16px;
  color: #7f1d1d;
}

@media (max-width: 680px) {
  .office-credentials > div {
    grid-template-columns: 1fr;
  }

  .cid-console {
    padding: 16px;
    border-radius: 18px;
  }

  .cid-console-help,
  .cid-console-status {
    padding: 16px;
    border-radius: 16px;
  }

  .cid-console-panels,
  .cid-console-stages {
    grid-template-columns: 1fr;
  }

  .cid-console-input {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cid-console-send {
    grid-column: 1 / -1;
    width: 100%;
  }

  .cid-chatbox {
    padding: 14px;
    border-radius: 16px;
  }

  .cid-chat-status {
    grid-template-columns: 1fr;
  }

  .cid-chat-input {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cid-chat-form button.cid-chat-send {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.section-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 25px;
}

.section-heading span {
  color: var(--blue);
  font-family: Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.instruction-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: instructions;
}

.instruction-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
  counter-increment: instructions;
}

.instruction-list li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--blue-pale);
  font-size: 0.72rem;
  font-weight: 800;
}

.instruction-list li > span::before {
  content: counter(instructions);
}

.instruction-list p {
  margin: 4px 0 0;
  color: #344054;
  line-height: 1.65;
}

.order-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 50px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fafbfc;
  font-size: 0.72rem;
}

.order-footer p {
  max-width: 530px;
  margin: 0;
}

.order-footer span {
  flex: 0 0 auto;
}

.portal-card {
  width: min(520px, 100%);
  margin: 12vh auto 0;
  padding: 42px;
  text-align: center;
}

.portal-card .brand-lockup {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}

.portal-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 14px;
  color: #9a3412;
  background: #fff1e9;
  font-size: 1.35rem;
  font-weight: 800;
}

.portal-card h1 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.portal-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.claim-code-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.claim-code-form label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.claim-code-form input {
  width: 100%;
  border: 1px solid #c7d7ee;
  border-radius: 13px;
  padding: 15px 16px;
  color: var(--ink);
  background: #f8fbff;
  font: inherit;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.claim-code-form button {
  border: 0;
  border-radius: 13px;
  padding: 15px 18px;
  color: #fff;
  background: #2563eb;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.claim-code-form small {
  color: var(--muted);
  line-height: 1.55;
}

.claim-code-error {
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .support-header {
    grid-template-columns: 1fr auto;
  }

  .support-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }

  .support-hero,
  .support-split {
    grid-template-columns: 1fr;
  }

  .support-hero {
    min-height: 0;
    padding-top: 40px;
  }

  .support-hero h1 {
    font-size: 3.65rem;
  }

  .support-hero-media,
  .support-screenshot {
    width: min(720px, 100%);
  }

  .support-guide-grid {
    grid-template-columns: 1fr;
  }

  .support-guide-card {
    grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  }

  .support-guide-card img {
    height: 100%;
    min-height: 220px;
  }

  .support-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .support-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .support-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .support-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: stretch;
  }

  .support-nav a {
    flex: 1 0 auto;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
  }

  .support-language {
    justify-self: start;
  }

  .support-hero {
    gap: 28px;
    padding: 34px 0 42px;
  }

  .support-hero h1 {
    font-size: 2.65rem;
  }

  .support-hero-copy > p {
    font-size: 1rem;
  }

  .support-actions,
  .support-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .support-button {
    width: 100%;
  }

  .support-band {
    padding: 42px 0;
  }

  .support-section-heading h2,
  .support-copy-block h2 {
    font-size: 2rem;
  }

  .support-guide-card {
    grid-template-columns: 1fr;
  }

  .support-guide-card img {
    min-height: 0;
  }

  .support-step-list li {
    padding-left: 48px;
  }

  .support-help-grid {
    grid-template-columns: 1fr;
  }

  .support-footer {
    gap: 8px;
  }

  .support-footer p {
    text-align: left;
  }

  .closed-shell {
    padding: 18px;
  }

  .closed-card {
    padding: 48px 24px;
    border-radius: 22px;
  }

  .brand-lockup {
    margin-bottom: 42px;
  }

  .portal-shell {
    padding: 22px 12px 40px;
  }

  .order-header {
    padding: 0 5px;
  }

  .order-summary {
    display: block;
    padding: 35px 25px;
  }

  .order-number {
    display: inline-block;
    margin-top: 25px;
  }

  .key-panel {
    margin: 22px 20px 0;
    padding: 18px;
  }

  .key-pending-panel,
  .key-error {
    margin: 22px 20px 0;
  }

  .key-row {
    align-items: stretch;
    flex-direction: column;
  }

  .instruction-panel {
    padding: 32px 24px 35px;
  }

  .office365-panel {
    padding: 32px 24px 35px;
  }

  .cid-panel {
    padding: 32px 24px 35px;
  }

  .cid-input-grid,
  .cid-group-grid {
    grid-template-columns: 1fr;
  }

  .cid-upload-form button.secondary {
    margin-left: 0;
  }

  .cid-results > div {
    grid-template-columns: 1fr;
  }

  .cid-results span {
    grid-column: auto;
  }

  .cid-results button {
    justify-self: start;
  }

  .office365-input-row {
    flex-direction: column;
  }

  .office365-name-row {
    grid-template-columns: 1fr;
  }

  .office365-input-row button {
    min-height: 44px;
  }

  .office-guide-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 21px 20px 18px;
  }

  .guide-important-notice {
    margin: 16px 20px 0;
    padding: 15px 15px 15px 48px;
  }

  .guide-important-notice-standalone {
    margin: 22px 20px 0;
  }

  .guide-important-notice::before {
    top: 15px;
    left: 15px;
  }

  .office-guide-pages {
    padding: 24px 20px;
  }

  .office-guide-page {
    min-height: 230px;
  }

  .guide-callout {
    width: 24px;
    height: 24px;
    border-width: 2px;
    font-size: 0.68rem;
  }

  .guide-highlight {
    border-width: 2px;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 70%);
  }

  .office-guide-controls {
    padding: 16px 20px;
  }

  .office-guide-controls button {
    min-width: 0;
    flex: 1;
  }

  .order-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 24px;
  }

  .portal-card {
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .closed-line span,
  .office-progress span::after,
  .office-guide-page {
    animation: none;
  }
}

/* Public storefront */
.storefront-site {
  --store-ink: #101828;
  --store-muted: #526173;
  --store-line: #dce3eb;
  --store-blue: #1769e0;
  --store-blue-dark: #0b3b78;
  --store-green: #147a55;
  --store-yellow: #f3c969;
  --store-coral: #c84f43;
  --store-paper: #ffffff;
  --store-soft: #f3f6f9;
  min-width: 320px;
  color: var(--store-ink);
  background: var(--store-paper);
}

.storefront-site *,
.storefront-site *::before,
.storefront-site *::after {
  letter-spacing: 0;
}

.storefront-site > main {
  min-height: 60vh;
}

.storefront-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.storefront-skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #101828;
  transform: translateY(-150%);
}

.storefront-skip-link:focus {
  transform: translateY(0);
}

.storefront-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgb(220 227 235 / 86%);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 8px 26px rgb(16 24 40 / 5%);
  backdrop-filter: blur(16px);
}

.storefront-header-inner {
  display: flex;
  width: min(1240px, calc(100% - 40px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.storefront-brand {
  display: inline-flex;
  min-width: 0;
  gap: 11px;
  align-items: center;
  color: var(--store-ink);
  text-decoration: none;
}

.storefront-brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 7px;
  border-radius: 8px;
  background: var(--store-blue);
  box-shadow: 0 8px 18px rgb(23 105 224 / 20%);
}

.storefront-brand-mark i {
  background: #fff;
}

.storefront-brand > span:last-child {
  display: grid;
  min-width: 0;
}

.storefront-brand strong {
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.15;
}

.storefront-brand small {
  overflow: hidden;
  margin-top: 3px;
  color: #718096;
  font-size: 0.62rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-navigation {
  display: flex;
  min-width: 0;
  gap: 20px;
  align-items: center;
}

.storefront-navigation nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.storefront-navigation nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  color: #43546a;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.storefront-navigation nav a:hover,
.storefront-navigation nav a:focus-visible,
.storefront-navigation nav a.active {
  color: #0d4f9e;
  background: #edf5ff;
  outline: none;
}

.storefront-languages {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: #f3f6f9;
}

.storefront-languages a {
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  color: #66758a;
  font-size: 0.62rem;
  font-weight: 850;
  text-decoration: none;
}

.storefront-languages a.active {
  color: #fff;
  background: #101828;
}

.storefront-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.storefront-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #26364b;
}

.storefront-eyebrow,
.storefront-section-heading > span,
.storefront-product-meta span,
.storefront-page-intro .storefront-eyebrow {
  color: var(--store-blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.storefront-hero {
  position: relative;
  min-height: 620px;
  max-height: 720px;
  height: 76vh;
  overflow: hidden;
  color: #fff;
  background: #0a1a2d;
}

.storefront-hero-media,
.storefront-hero-overlay {
  position: absolute;
  inset: 0;
}

.storefront-hero-media {
  background-color: #dbe8f5;
  background-image: url("../images/windows-cid-guide/03-change-product-key.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.storefront-hero-overlay {
  background: rgb(5 17 32 / 78%);
}

.storefront-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 54px 0;
}

.storefront-hero .storefront-eyebrow {
  color: #9cc8ff;
}

.storefront-hero h1 {
  max-width: 760px;
  margin: 15px 0 0;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 850;
  line-height: 0.98;
}

.storefront-hero-statement {
  max-width: 770px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 750;
  line-height: 1.25;
}

.storefront-hero-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: #ccdae9;
  font-size: 1.02rem;
  line-height: 1.7;
}

.storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.storefront-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.storefront-button-primary {
  color: #fff;
  background: var(--store-blue);
  box-shadow: 0 12px 28px rgb(23 105 224 / 24%);
}

.storefront-button-secondary {
  color: #174f9c;
  border-color: #bfd1e8;
  background: #fff;
}

.storefront-button-ghost {
  color: #fff;
  border-color: rgb(255 255 255 / 40%);
  background: rgb(255 255 255 / 8%);
}

.storefront-button-light {
  color: #0c3d72;
  background: #fff;
}

.storefront-button-disabled {
  color: #6c7787;
  border-color: #dce3eb;
  background: #eef1f5;
}

.storefront-hero-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.storefront-hero-proofs span {
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 7px;
  color: #dbe9f7;
  background: rgb(4 16 30 / 42%);
  font-size: 0.68rem;
  font-weight: 750;
}

.storefront-band {
  padding: 82px 0;
}

.storefront-catalog-band,
.storefront-products-band,
.storefront-contact-band,
.storefront-faq-band,
.storefront-legal-band,
.storefront-description-band {
  background: #fff;
}

.storefront-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.storefront-section-heading-row {
  display: flex;
  max-width: none;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.storefront-section-heading-row > a {
  flex: 0 0 auto;
  margin-bottom: 8px;
  color: var(--store-blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
}

.storefront-section-heading h2 {
  margin: 8px 0 10px;
  color: var(--store-ink);
  font-size: 2.55rem;
  font-weight: 820;
  line-height: 1.12;
}

.storefront-section-heading p,
.storefront-page-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--store-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.storefront-empty-state {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: #f7f9fb;
}

.storefront-empty-state > span {
  color: var(--store-blue);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 850;
}

.storefront-empty-state h3 {
  margin: 12px 0 8px;
  font-size: 1.55rem;
}

.storefront-empty-state p {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--store-muted);
  line-height: 1.65;
}

.storefront-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.storefront-product-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgb(16 24 40 / 6%);
}

.storefront-product-image {
  display: block;
  height: 205px;
  overflow: hidden;
  border-bottom: 1px solid var(--store-line);
  background: #edf2f7;
}

.storefront-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-product-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 21px;
}

.storefront-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.storefront-product-meta span {
  padding: 5px 7px;
  border-radius: 6px;
  color: #135f46;
  background: #e7f6ef;
  font-size: 0.6rem;
}

.storefront-product-meta span + span {
  color: #7a4b00;
  background: #fff3cd;
}

.storefront-product-card h3 {
  margin: 16px 0 8px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.storefront-product-card h3 a {
  color: var(--store-ink);
  text-decoration: none;
}

.storefront-product-card p {
  margin: 0;
  color: var(--store-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.storefront-product-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}

.storefront-product-footer strong {
  color: #0d3f78;
  font-size: 1.05rem;
}

.storefront-product-footer a {
  color: var(--store-blue);
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: none;
}

.storefront-how-band {
  border-top: 1px solid var(--store-line);
  border-bottom: 1px solid var(--store-line);
  background: var(--store-soft);
}

.storefront-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.storefront-process li {
  min-width: 0;
  padding: 25px 28px 25px 0;
  border-top: 2px solid #aebed2;
}

.storefront-process li + li {
  padding-left: 28px;
  border-left: 1px solid #d2dce7;
}

.storefront-process li:nth-child(1) {
  border-top-color: var(--store-blue);
}

.storefront-process li:nth-child(2) {
  border-top-color: var(--store-green);
}

.storefront-process li:nth-child(3) {
  border-top-color: var(--store-coral);
}

.storefront-process span,
.storefront-trust-list article > span,
.storefront-about-columns article > span,
.storefront-values-list article > span,
.storefront-contact-aside > span,
.storefront-legal-sections article > span {
  color: #718096;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 850;
}

.storefront-process h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.storefront-process p {
  margin: 0;
  color: var(--store-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.storefront-trust-band {
  background: #fff;
}

.storefront-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 80px;
  align-items: start;
}

.storefront-trust-list {
  border-top: 1px solid var(--store-line);
}

.storefront-trust-list article,
.storefront-values-list article,
.storefront-legal-sections article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--store-line);
}

.storefront-trust-list h3,
.storefront-values-list h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.storefront-trust-list p,
.storefront-values-list p {
  margin: 0;
  color: var(--store-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.storefront-cta-band {
  padding: 52px 0;
  color: #fff;
  background: #124f4a;
}

.storefront-cta-band .storefront-container,
.storefront-detail-support .storefront-container {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.storefront-cta-band h2,
.storefront-detail-support h2 {
  max-width: 760px;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.25;
}

.storefront-cta-band p,
.storefront-detail-support p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #cce3df;
  line-height: 1.6;
}

.storefront-page-intro {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--store-line);
  background: #f2f6fa;
}

.storefront-page-intro h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-size: 3.8rem;
  font-weight: 830;
  line-height: 1.04;
}

.storefront-product-filters {
  display: flex;
  gap: 3px;
  width: max-content;
  margin-bottom: 28px;
  padding: 3px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: #eef2f6;
}

.storefront-product-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: #536174;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 780;
}

.storefront-product-filters button.active {
  color: #0d3f78;
  background: #fff;
  box-shadow: 0 3px 10px rgb(16 24 40 / 8%);
}

.storefront-product-card[hidden] {
  display: none;
}

.storefront-product-detail {
  padding: 48px 0 80px;
  background: #fff;
}

.storefront-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #526173;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

.storefront-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: start;
}

.storefront-detail-media {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: #eef2f6;
}

.storefront-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-detail-copy {
  padding-top: 18px;
}

.storefront-detail-copy h1 {
  margin: 13px 0 15px;
  font-size: 3rem;
  line-height: 1.08;
}

.storefront-detail-summary {
  margin: 0;
  color: var(--store-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.storefront-detail-facts {
  margin: 28px 0;
  border-top: 1px solid var(--store-line);
}

.storefront-detail-facts div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--store-line);
}

.storefront-detail-facts dt {
  color: #718096;
  font-size: 0.7rem;
  font-weight: 750;
}

.storefront-detail-facts dd {
  margin: 0;
  color: #213248;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.storefront-buy-button {
  min-width: 170px;
}

.storefront-secure-note {
  display: block;
  margin-top: 10px;
  color: #718096;
  font-size: 0.67rem;
}

.storefront-description-band {
  border-top: 1px solid var(--store-line);
  background: var(--store-soft);
}

.storefront-description-copy {
  max-width: 800px;
}

.storefront-description-copy h2 {
  margin: 0 0 18px;
  font-size: 2rem;
}

.storefront-description-copy p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.8;
  white-space: pre-line;
}

.storefront-detail-support {
  border-top: 1px solid var(--store-line);
  background: #fff;
}

.storefront-detail-support h2 {
  color: var(--store-ink);
}

.storefront-detail-support p {
  color: var(--store-muted);
}

.storefront-about-image {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--store-line);
  background: #0d1d32;
}

.storefront-about-image img {
  display: block;
  width: min(920px, calc(100% - 40px));
  max-height: 330px;
  object-fit: contain;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgb(0 0 0 / 28%);
}

.storefront-about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.storefront-about-columns article {
  border-top: 2px solid var(--store-blue);
  padding-top: 20px;
}

.storefront-about-columns article + article {
  border-top-color: var(--store-green);
}

.storefront-about-columns h2 {
  margin: 18px 0 10px;
  font-size: 1.65rem;
}

.storefront-about-columns p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.75;
}

.storefront-values-band {
  border-top: 1px solid var(--store-line);
  background: var(--store-soft);
}

.storefront-values-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.storefront-values-list article {
  grid-template-columns: 36px minmax(0, 1fr);
  border-top: 1px solid #aebed2;
  border-bottom: 0;
}

.storefront-legal-note-band {
  padding: 34px 0;
  color: #e6eef7;
  background: #18283c;
}

.storefront-legal-note-band p {
  max-width: 980px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

.storefront-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: start;
}

.storefront-contact-form-panel {
  padding-right: 10px;
}

.storefront-contact-form {
  display: grid;
  gap: 18px;
}

.storefront-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.storefront-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.storefront-field label {
  color: #344054;
  font-size: 0.72rem;
  font-weight: 800;
}

.storefront-field input,
.storefront-field select,
.storefront-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cfd8e4;
  border-radius: 8px;
  color: var(--store-ink);
  outline: none;
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
}

.storefront-field textarea {
  resize: vertical;
  line-height: 1.6;
}

.storefront-field input:focus,
.storefront-field select:focus,
.storefront-field textarea:focus {
  border-color: #5f9ce9;
  box-shadow: 0 0 0 3px rgb(23 105 224 / 10%);
}

.storefront-field > span,
.storefront-form-errors,
.storefront-checkbox-error {
  color: #b42318;
  font-size: 0.68rem;
}

.storefront-privacy-check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #526173;
  font-size: 0.72rem;
  line-height: 1.55;
}

.storefront-privacy-check input {
  margin-top: 3px;
}

.storefront-privacy-check a {
  color: var(--store-blue);
}

.storefront-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.storefront-contact-aside {
  padding: 26px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  background: var(--store-soft);
}

.storefront-contact-aside h2 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.storefront-contact-aside p {
  margin: 0 0 20px;
  color: var(--store-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.storefront-contact-aside a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--store-line);
  color: var(--store-blue);
  font-size: 0.73rem;
  font-weight: 800;
  text-decoration: none;
}

.storefront-contact-success {
  min-height: 310px;
  padding: 38px;
  border: 1px solid #b9dfcf;
  border-radius: 8px;
  background: #effaf5;
}

.storefront-contact-success > span {
  color: var(--store-green);
  font-family: Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 850;
}

.storefront-contact-success h2 {
  margin: 18px 0 10px;
  font-size: 1.8rem;
}

.storefront-contact-success p {
  margin: 0;
  color: #425c52;
  line-height: 1.7;
}

.storefront-faq-list {
  max-width: 920px;
}

.storefront-faq-list details {
  border-top: 1px solid var(--store-line);
}

.storefront-faq-list details:last-child {
  border-bottom: 1px solid var(--store-line);
}

.storefront-faq-list summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  color: var(--store-ink);
  font-size: 1rem;
  font-weight: 780;
  list-style: none;
}

.storefront-faq-list summary::-webkit-details-marker {
  display: none;
}

.storefront-faq-list summary span {
  color: var(--store-blue);
  font-family: Consolas, monospace;
  font-size: 0.68rem;
}

.storefront-faq-list details p {
  max-width: 760px;
  margin: -4px 0 24px 62px;
  color: var(--store-muted);
  line-height: 1.7;
}

.storefront-legal-intro small {
  display: block;
  margin-top: 20px;
  color: #7a8797;
  font-size: 0.68rem;
  font-weight: 700;
}

.storefront-legal-sections {
  max-width: 920px;
}

.storefront-legal-sections article {
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 26px 0;
}

.storefront-legal-sections h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.storefront-legal-sections p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.75;
}

.storefront-footer {
  padding: 64px 0 0;
  color: #dbe5f0;
  background: #111f31;
}

.storefront-footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(260px, 1.7fr) repeat(4, minmax(120px, 0.7fr));
  gap: 34px;
  margin: 0 auto;
}

.storefront-footer .storefront-brand {
  color: #fff;
}

.storefront-footer .storefront-brand small {
  color: #9fb0c4;
}

.storefront-footer-brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: #9fb0c4;
  font-size: 0.76rem;
  line-height: 1.65;
}

.storefront-footer-inner > div:not(.storefront-footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.storefront-footer-inner > div > strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.72rem;
}

.storefront-footer-inner > div > a {
  color: #aebed0;
  font-size: 0.7rem;
  text-decoration: none;
}

.storefront-footer-bottom {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin: 54px auto 0;
  padding: 20px 0 26px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #8fa1b5;
  font-size: 0.63rem;
  line-height: 1.5;
}

.storefront-footer-bottom span:last-child {
  max-width: 680px;
  text-align: right;
}

.storefront-site.support-site {
  background: #f3f6fa;
}

.storefront-site.support-site > main {
  overflow-x: clip;
}

.storefront-site .support-shell {
  padding-top: 0;
}

@media (max-width: 1040px) {
  .storefront-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storefront-trust-layout,
  .storefront-detail-layout,
  .storefront-contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .storefront-footer-inner {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .storefront-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .storefront-header-inner {
    min-height: 64px;
  }

  .storefront-menu-button {
    display: block;
  }

  .storefront-navigation {
    position: absolute;
    top: 64px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgb(16 24 40 / 16%);
  }

  .storefront-navigation.open {
    display: flex;
  }

  .storefront-navigation nav {
    align-items: stretch;
    flex-direction: column;
  }

  .storefront-navigation nav a {
    justify-content: flex-start;
  }

  .storefront-languages {
    width: max-content;
  }

  .storefront-hero,
  .storefront-hero-content {
    min-height: 590px;
  }

  .storefront-hero {
    height: 72vh;
  }

  .storefront-hero h1 {
    font-size: 3.7rem;
  }

  .storefront-hero-statement {
    font-size: 1.4rem;
  }

  .storefront-page-intro h1 {
    font-size: 3rem;
  }

  .storefront-process,
  .storefront-about-columns,
  .storefront-values-list {
    grid-template-columns: 1fr;
  }

  .storefront-process li + li {
    padding-left: 0;
    border-left: 0;
  }

  .storefront-cta-band .storefront-container,
  .storefront-detail-support .storefront-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .storefront-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .storefront-container,
  .storefront-header-inner,
  .storefront-footer-inner,
  .storefront-footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .storefront-brand small {
    max-width: 190px;
  }

  .storefront-hero,
  .storefront-hero-content {
    min-height: 610px;
  }

  .storefront-hero {
    height: 74vh;
    max-height: 680px;
  }

  .storefront-hero-content {
    padding: 42px 0;
  }

  .storefront-hero h1 {
    font-size: 2.75rem;
  }

  .storefront-hero-statement {
    font-size: 1.2rem;
  }

  .storefront-hero-lead {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .storefront-actions,
  .storefront-actions .storefront-button {
    width: 100%;
  }

  .storefront-hero-proofs {
    gap: 5px;
  }

  .storefront-hero-proofs span {
    font-size: 0.6rem;
  }

  .storefront-band {
    padding: 58px 0;
  }

  .storefront-section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .storefront-section-heading h2 {
    font-size: 2rem;
  }

  .storefront-empty-state {
    min-height: 300px;
    padding: 28px;
  }

  .storefront-product-grid {
    grid-template-columns: 1fr;
  }

  .storefront-page-intro {
    padding: 58px 0 48px;
  }

  .storefront-page-intro h1 {
    font-size: 2.35rem;
  }

  .storefront-product-filters {
    width: 100%;
    overflow-x: auto;
  }

  .storefront-product-filters button {
    flex: 1 0 auto;
  }

  .storefront-detail-copy h1 {
    font-size: 2.25rem;
  }

  .storefront-detail-facts div {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .storefront-form-grid {
    grid-template-columns: 1fr;
  }

  .storefront-faq-list summary {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .storefront-faq-list details p {
    margin-left: 50px;
  }

  .storefront-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .storefront-footer-brand {
    grid-column: 1 / -1;
  }

  .storefront-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .storefront-footer-bottom span:last-child {
    text-align: left;
  }
}
