@charset "UTF-8";
:root {
  --oh-bg-page: #f5f5f5;
  --oh-bg-card: #ffffff;
  --oh-bg-card-muted: #fafafa;
  --oh-bg-header: #ffffff;
  --oh-bg-header-border: #e8e8e8;
  --oh-bg-hero: #ffffff;
  --oh-bg-hero-overlay: rgba(255, 255, 255, 0.78);
  --oh-bg-hero-band: #f4a72a;
  --oh-bg-hero-band-2: #ec9416;
  --oh-bg-hero-band-text: #1f1f1f;
  --oh-bg-hero-band-text-soft: rgba(31, 31, 31, 0.78);
  --oh-stripe: #0d3762;
  --oh-modal-bg: #2d3a4b;
  --oh-modal-panel: #4b5566;
  --oh-modal-accent: #fe8906;
  --oh-modal-accent-2: #ffb74d;
  --oh-modal-accent-press: #d97706;
  --oh-modal-text: #ffffff;
  --oh-modal-text-soft: rgba(255, 255, 255, 0.78);
  --oh-modal-text-mute: rgba(255, 255, 255, 0.55);
  --oh-modal-divider: rgba(255, 255, 255, 0.18);
  --oh-text: #1f1f1f;
  --oh-text-strong: #111111;
  --oh-text-muted: #6b6b6b;
  --oh-text-soft: #8a8a8a;
  --oh-text-inverse: #ffffff;
  --oh-text-link: #1f4ea8;
  --oh-text-link-hover: #d97706;
  --oh-accent: #f59e0b;
  --oh-accent-hover: #d97706;
  --oh-accent-press: #b45309;
  --oh-accent-soft: #fff7ec;
  --oh-accent-strong: #b45309;
  --oh-cta: #0d3762;
  --oh-cta-hover: #164a85;
  --oh-cta-press: #082a4d;
  --oh-cta-text: #ffffff;
  --oh-cta-shadow: rgba(13, 55, 98, 0.25);
  --oh-cta-secondary: #ffffff;
  --oh-cta-secondary-hover: #fafafa;
  --oh-success: #047857;
  --oh-success-bg: #ecfdf5;
  --oh-warning: #b45309;
  --oh-warning-bg: #fff7ed;
  --oh-error: #b91c1c;
  --oh-error-bg: #fef2f2;
  --oh-info: #1e3a8a;
  --oh-info-bg: #eff6ff;
  --oh-border: #e5e5e5;
  --oh-border-strong: #cccccc;
  --oh-focus: #f59e0b;
  --oh-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --oh-shadow-md: 0 6px 18px rgba(15, 23, 42, 0.07);
  --oh-shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.12);
  --oh-radius-sm: 4px;
  --oh-radius-md: 6px;
  --oh-radius-lg: 8px;
  --oh-radius-xl: 12px;
  --oh-radius-pill: 999px;
  --oh-content-width: 1100px;
  --oh-content-narrow: 760px;
  --oh-gap-xs: 4px;
  --oh-gap-sm: 8px;
  --oh-gap-md: 16px;
  --oh-gap-lg: 24px;
  --oh-gap-xl: 40px;
  --oh-gap-2xl: 64px;
  --oh-font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
      'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB',
      'Microsoft YaHei', sans-serif;
  --oh-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC',
      'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --oh-font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas,
      'Liberation Mono', monospace;
}

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

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--oh-text);
  background: var(--oh-bg-page);
  font-family: var(--oh-font-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--oh-text-link);
  text-decoration: none;
}
a:hover {
  color: var(--oh-text-link-hover);
  text-decoration: underline;
}

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

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

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(245, 158, 11, 0.3);
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.oh-app[aria-busy=true]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--oh-bg-page);
  z-index: 9999;
}

.oh-app[aria-busy=true]::after {
  content: "Loading…";
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oh-text-muted);
  z-index: 10000;
}

.oh-main {
  flex: 1;
  width: 100%;
  max-width: var(--oh-content-width);
  margin: 0 auto;
  padding: var(--oh-gap-lg) var(--oh-gap-lg) var(--oh-gap-2xl);
}

.oh-empty {
  padding: var(--oh-gap-xl);
  text-align: center;
  color: var(--oh-text-muted);
  background: var(--oh-bg-card);
  border-radius: var(--oh-radius-lg);
  border: 1px dashed var(--oh-border);
}

@media (max-width: 720px) {
  .oh-main {
    padding: var(--oh-gap-lg) var(--oh-gap-md) var(--oh-gap-xl);
  }
}
.oh-page {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
}

.oh-page--narrow {
  max-width: var(--oh-content-narrow);
  margin: 0 auto;
  width: 100%;
}

.oh-page__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.oh-page__title {
  margin: 0;
  font-family: var(--oh-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--oh-text-strong);
  letter-spacing: -0.2px;
}

.oh-page__subtitle {
  margin: 0;
  color: var(--oh-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.oh-page__body {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
}

.oh-card {
  background: var(--oh-bg-card);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  padding: var(--oh-gap-lg) var(--oh-gap-lg);
  box-shadow: var(--oh-shadow-sm);
}
.oh-card--warning {
  background: var(--oh-warning-bg);
  border-color: rgba(180, 83, 9, 0.25);
  color: #6a3d05;
}
.oh-card--success {
  background: var(--oh-success-bg);
  border-color: rgba(4, 120, 87, 0.3);
}
.oh-card--flat {
  box-shadow: none;
}

.oh-card__title {
  margin: 0 0 4px;
  font-family: var(--oh-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oh-text-strong);
}

.oh-card__subtitle {
  margin: 0 0 var(--oh-gap-md);
  color: var(--oh-text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.oh-auth__links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.oh-auth__sep {
  color: var(--oh-text-soft);
}

@media (max-width: 540px) {
  .oh-page__title {
    font-size: 22px;
  }
}
.oh-form {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
}

.oh-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--oh-text-strong);
}

.oh-form__hint {
  font-size: 12px;
  color: var(--oh-text-muted);
  margin: 0;
}

.oh-form__error {
  color: var(--oh-error);
  background: var(--oh-error-bg);
  border: 1px solid rgba(185, 28, 28, 0.25);
  padding: 10px 12px;
  border-radius: var(--oh-radius-md);
  font-size: 13px;
  min-height: 0;
}
.oh-form__error:empty {
  display: none;
}

.oh-form__actions {
  display: flex;
  gap: var(--oh-gap-sm);
  align-items: center;
}

.oh-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-md);
  background: var(--oh-bg-card);
  color: var(--oh-text);
  box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.03);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.oh-input::placeholder {
  color: var(--oh-text-soft);
}
.oh-input:hover {
  border-color: var(--oh-border-strong);
}
.oh-input:focus {
  outline: none;
  border-color: var(--oh-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}
.oh-input--mono {
  font-family: var(--oh-font-mono);
  letter-spacing: 0.6px;
}
.oh-input--textarea {
  resize: vertical;
  min-height: 84px;
}

.oh-link {
  color: var(--oh-text-link);
  cursor: pointer;
  font-size: 13px;
}

.oh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--oh-radius-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s, box-shadow 0.15s;
}
.oh-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.oh-btn:active:not(:disabled) {
  transform: translateY(1px);
}
.oh-btn--primary {
  background: var(--oh-cta);
  color: var(--oh-cta-text);
  border-color: var(--oh-cta-press);
  box-shadow: 0 2px 0 var(--oh-cta-shadow);
}
.oh-btn--primary:hover:not(:disabled) {
  background: var(--oh-cta-hover);
  color: var(--oh-cta-text);
}
.oh-btn--secondary {
  background: var(--oh-bg-card);
  color: var(--oh-text-strong);
  border-color: var(--oh-border-strong);
}
.oh-btn--secondary:hover:not(:disabled) {
  background: var(--oh-accent-soft);
  border-color: var(--oh-accent);
  color: var(--oh-accent-hover);
}
.oh-btn--ghost {
  background: transparent;
  color: var(--oh-text-link);
  border-color: transparent;
}
.oh-btn--ghost:hover:not(:disabled) {
  color: var(--oh-text-link-hover);
  background: var(--oh-bg-card-muted);
}
.oh-btn--block {
  width: 100%;
}

.oh-header {
  background: var(--oh-bg-header);
  color: var(--oh-text);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--oh-bg-header-border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}
.oh-header::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--oh-stripe);
}

.oh-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--oh-gap-lg);
  max-width: var(--oh-content-width);
  margin: 0 auto;
  padding: 18px var(--oh-gap-lg);
}

.oh-header__auth {
  display: flex;
  gap: var(--oh-gap-sm);
  align-items: center;
  margin-left: auto;
}

.oh-header__auth-link {
  color: var(--oh-text);
  padding: 8px 14px;
  border-radius: var(--oh-radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.oh-header__auth-link:hover {
  text-decoration: none;
  color: var(--oh-accent-hover);
}
.oh-header__auth-link--cta {
  background: var(--oh-cta);
  color: var(--oh-cta-text);
  border-color: var(--oh-cta-press);
}
.oh-header__auth-link--cta:hover {
  background: var(--oh-cta-hover);
  border-color: var(--oh-cta-press);
  color: var(--oh-cta-text);
}

.oh-header__user {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
}

.oh-header__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-gap-sm);
  padding: 6px 14px 6px 6px;
  border-radius: var(--oh-radius-pill);
  border: 1px solid var(--oh-border);
  background: var(--oh-bg-card-muted);
  cursor: pointer;
  font: inherit;
  line-height: 1.1;
  color: var(--oh-text-strong);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.oh-header__chip:hover {
  border-color: var(--oh-border-strong);
  background: var(--oh-bg-card);
}
.oh-header__user.is-open .oh-header__chip {
  border-color: var(--oh-cta);
  box-shadow: 0 0 0 3px rgba(13, 55, 98, 0.12);
  background: var(--oh-bg-card);
}

.oh-header__chip-balance {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--oh-radius-pill);
  background: var(--oh-accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.28);
  font-size: 13px;
}

.oh-header__chip-balance-value {
  font-weight: 700;
  color: var(--oh-accent-strong);
}

.oh-header__chip-balance-unit {
  font-size: 10.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--oh-text-muted);
}

.oh-header__chip-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--oh-text-strong);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oh-header__chip-caret {
  font-size: 10px;
  color: var(--oh-text-muted);
  transition: transform 0.15s;
}
.oh-header__user.is-open .oh-header__chip-caret {
  transform: rotate(180deg);
  color: var(--oh-text-strong);
}

.oh-header__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--oh-bg-card);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-md);
  padding: 6px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  display: none;
  flex-direction: column;
  z-index: 40;
}
.oh-header__user.is-open .oh-header__menu {
  display: flex;
}

.oh-header__menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border: 0;
  background: transparent;
  border-radius: var(--oh-radius-sm);
  color: var(--oh-text-strong);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.oh-header__menu-item:hover {
  background: var(--oh-bg-card-muted);
  text-decoration: none;
}
.oh-header__menu-item.is-active {
  color: var(--oh-cta);
  background: rgba(13, 55, 98, 0.06);
}
.oh-header__menu-item--danger {
  color: var(--oh-text-muted);
}
.oh-header__menu-item--danger:hover {
  color: var(--oh-error);
  background: var(--oh-error-bg);
}

.oh-header__menu-sep {
  height: 1px;
  margin: 4px 6px;
  background: var(--oh-border);
}

@media (max-width: 860px) {
  .oh-header__inner {
    flex-wrap: wrap;
    gap: var(--oh-gap-sm);
    padding: 10px var(--oh-gap-md);
  }
  .oh-header__chip-name {
    display: none;
  }
}
.oh-balance {
  background: var(--oh-bg-card);
  color: var(--oh-text);
  border-radius: var(--oh-radius-lg);
  padding: 16px 22px;
  box-shadow: var(--oh-shadow-sm);
  border: 1px solid var(--oh-border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: var(--oh-gap-lg);
  align-items: center;
}
.oh-balance::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--oh-accent) 0%, var(--oh-accent-hover) 100%);
}

.oh-balance__primary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 220px;
}

.oh-balance__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--oh-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oh-balance__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.oh-balance__value {
  font-family: var(--oh-font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--oh-text-strong);
  letter-spacing: -1px;
}

.oh-balance__unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--oh-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.oh-balance__stats {
  flex: 2 1 360px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: var(--oh-gap-md);
}

.oh-balance__kpi {
  background: var(--oh-bg-card-muted);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-sm);
  padding: 10px 12px;
}

.oh-balance__kpi-label {
  margin: 0;
  font-size: 11px;
  color: var(--oh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.oh-balance__kpi-value {
  margin: 6px 0 0;
  font-family: var(--oh-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--oh-text-strong);
}

@media (max-width: 640px) {
  .oh-balance {
    padding: 18px 18px 18px 22px;
    gap: var(--oh-gap-md);
  }
  .oh-balance__value {
    font-size: 28px;
  }
}
.oh-hero {
  position: relative;
  background: linear-gradient(180deg, var(--oh-bg-hero-band) 0%, var(--oh-bg-hero-band-2) 100%);
  color: var(--oh-bg-hero-band-text);
  overflow: visible;
  padding: 0;
  margin: 0;
}
.oh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.oh-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--oh-content-width);
  margin: 0 auto;
  padding: 56px var(--oh-gap-lg) 88px;
  text-align: center;
}

.oh-hero__copy {
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oh-hero__headline {
  margin: 0 0 14px;
  font-family: var(--oh-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: var(--oh-bg-hero-band-text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.oh-hero__star {
  color: #ffffff;
  margin-left: 4px;
  font-weight: 700;
}

.oh-hero__sub {
  margin: 0 0 var(--oh-gap-md);
  font-family: var(--oh-font-display);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.oh-hero__lede {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--oh-bg-hero-band-text-soft);
  line-height: 1.65;
  max-width: 60ch;
}

.oh-hero__divider {
  border: 0;
  border-top: 1px solid rgba(31, 31, 31, 0.15);
  width: 80px;
  margin: 14px 0 14px;
}

.oh-hero__rules {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--oh-bg-hero-band-text-soft);
  font-size: 13px;
  line-height: 1.7;
  max-width: 64ch;
  text-align: left;
}
.oh-hero__rules li {
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.oh-hero__rules li + li {
  margin-top: 4px;
}

.oh-hero__rule-num {
  font-weight: 800;
  flex: 0 0 auto;
  color: var(--oh-bg-hero-band-text);
}

.oh-hero__rule-text {
  color: var(--oh-bg-hero-band-text-soft);
}

.oh-hero__aside {
  max-width: 460px;
  margin: -56px auto 0;
  padding: 0 var(--oh-gap-lg);
  position: relative;
  z-index: 2;
}

.oh-fcard {
  width: 100%;
  background: var(--oh-bg-card);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  padding: 28px 28px 24px;
  color: var(--oh-text);
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.oh-fcard__title {
  margin: 0 0 4px;
  font-family: var(--oh-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--oh-text-strong);
  letter-spacing: -0.2px;
  text-align: center;
}

.oh-fcard__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oh-fcard__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-fcard__field-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--oh-text-strong);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.oh-fcard__field-req {
  color: var(--oh-accent-strong);
  font-weight: 700;
}

.oh-fcard__field-hint {
  font-size: 12px;
  color: var(--oh-text-muted);
}

.oh-fcard .oh-input {
  padding: 13px 14px;
  font-size: 14px;
}
.oh-fcard .oh-input:focus {
  outline: none;
  border-color: var(--oh-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.oh-fcard .oh-btn--primary {
  width: 100%;
  padding: 14px 22px;
  font-size: 15px;
  background: var(--oh-cta);
  color: var(--oh-cta-text);
  border-color: var(--oh-cta-press);
  box-shadow: 0 2px 0 var(--oh-cta-shadow);
}
.oh-fcard .oh-btn--primary:hover:not(:disabled) {
  background: var(--oh-cta-hover);
  color: var(--oh-cta-text);
}

.oh-fcard .oh-form__error {
  text-align: left;
}

.oh-fcard__hints {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.oh-fcard__hint {
  margin: 0;
  font-size: 12px;
  color: var(--oh-text-muted);
  line-height: 1.5;
  text-align: center;
}

.oh-fcard__footer {
  margin-top: 4px;
  padding-top: var(--oh-gap-md);
  border-top: 1px solid var(--oh-border);
  text-align: center;
  font-size: 13px;
  color: var(--oh-text-muted);
}
.oh-fcard__footer a {
  color: var(--oh-accent-hover);
  font-weight: 600;
  text-decoration: none;
}
.oh-fcard__footer a:hover {
  color: var(--oh-accent-strong);
  text-decoration: underline;
}

.oh-page--hero {
  gap: 0;
}
.oh-page--hero .oh-page__head {
  display: none;
}

.oh-main[data-route="/login"],
.oh-main[data-route="/register"],
.oh-main[data-route="/forgot"] {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  max-width: none;
  width: 100%;
}

.oh-hero + * {
  margin-top: 0;
}

.oh-hero__aside {
  margin-bottom: var(--oh-gap-2xl);
}

@media (max-width: 640px) {
  .oh-hero__inner {
    padding: 36px var(--oh-gap-md) 64px;
  }
  .oh-hero__headline {
    font-size: 24px;
    letter-spacing: -0.2px;
  }
  .oh-hero__sub {
    font-size: 14px;
  }
  .oh-hero__aside {
    margin-top: -40px;
    padding: 0 var(--oh-gap-md);
  }
  .oh-fcard {
    padding: 22px 20px 18px;
  }
}
.oh-activate {
  position: relative;
  background: var(--oh-bg-card);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-xl);
  box-shadow: var(--oh-shadow-md);
  margin-bottom: var(--oh-gap-lg);
  overflow: hidden;
}

.oh-activate__inner {
  margin: 0 auto;
  padding: 56px var(--oh-gap-lg) 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

.oh-activate__eyebrow {
  margin: 0 0 8px;
  font-family: var(--oh-font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5a6573;
}

.oh-activate__headline {
  margin: 0 0 18px;
  font-family: var(--oh-font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  letter-spacing: -0.4px;
}

.oh-activate__intro {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.oh-activate__intro-line {
  margin: 0;
  color: #6a7280;
  font-size: 17px;
  line-height: 1.7;
}
.oh-activate__intro-line--tight {
  margin-top: 8px;
  font-weight: 700;
  color: #1f1f1f;
}

.oh-activate__form {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  text-align: left;
}

.oh-activate__fineprint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--oh-text-soft);
  text-align: center;
  line-height: 1.6; 
  align-self: center;
}

.oh-activate__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-activate__field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--oh-text-strong);
}

.oh-activate__field-req {
  color: var(--oh-accent-strong);
  font-weight: 700;
}

.oh-activate__form .oh-input {
  padding: 11px 14px;
  font-size: 14px;
  border-radius: var(--oh-radius-md);
  background: #ffffff;
  border-color: var(--oh-border);
}
.oh-activate__form .oh-input:focus {
  border-color: var(--oh-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.oh-activate__disclaimer {
  margin: 4px 0 4px;
  font-size: 12px;
  color: var(--oh-text-muted);
  text-align: center;
}

.oh-activate__form .oh-btn--primary {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: var(--oh-radius-md);
  background: var(--oh-cta);
  color: var(--oh-cta-text);
  border-color: var(--oh-cta-press);
  box-shadow: 0 2px 0 var(--oh-cta-shadow);
}
.oh-activate__form .oh-btn--primary:hover:not(:disabled) {
  background: var(--oh-cta-hover);
  color: var(--oh-cta-text);
}

.oh-activate__form .oh-form__error {
  text-align: left;
}

@media (max-width: 640px) {
  .oh-activate__inner {
    padding: 36px var(--oh-gap-md) 32px;
  }
  .oh-activate__headline {
    font-size: 22px;
  }
  .oh-activate__eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
  }
}
.oh-dashboard__balance {
  /* Balance card slot — controlled by .oh-balance */
}

.oh-dashboard__query-form {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-sm);
}

.oh-dashboard__query-row {
  display: flex;
  gap: var(--oh-gap-sm);
  flex-wrap: wrap;
  align-items: stretch;
}
.oh-dashboard__query-row .oh-input {
  flex: 1 1 240px;
  font-size: 15px;
}
.oh-dashboard__query-row .oh-btn {
  flex: 0 0 auto;
}

.oh-order-detail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-gap-sm);
  margin-bottom: var(--oh-gap-md);
}

.oh-order-detail__facts {
  margin: 0 0 var(--oh-gap-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--oh-gap-md);
  padding: var(--oh-gap-md) var(--oh-gap-md);
  background: var(--oh-bg-card-muted);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-md);
}

.oh-fact {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oh-fact__label {
  font-size: 11px;
  color: var(--oh-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0;
}

.oh-fact__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--oh-text-strong);
  margin: 0;
}

.oh-order-detail__items {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
}

.oh-order-item {
  display: flex;
  gap: var(--oh-gap-md);
  padding: var(--oh-gap-md);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-md);
  background: var(--oh-bg-card);
  align-items: flex-start;
}

.oh-order-item__cover {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-md);
  overflow: hidden;
  background: var(--oh-bg-card-muted);
  display: grid;
  place-items: center;
}
.oh-order-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.oh-order-item__cover-fallback {
  font-family: var(--oh-font-mono);
  color: var(--oh-text-muted);
  font-weight: 600;
}

.oh-order-item__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-order-item__title {
  font-size: 14px;
  color: var(--oh-text-link);
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-order-item__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.oh-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: var(--oh-bg-card-muted);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-pill);
  font-size: 11px;
  color: var(--oh-text-muted);
}
.oh-tag--mono {
  font-family: var(--oh-font-mono);
  color: var(--oh-text-strong);
}

.oh-dashboard__eligible {
  background: var(--oh-success-bg);
  border: 1px solid rgba(4, 120, 87, 0.25);
  border-radius: var(--oh-radius-md);
  padding: 14px 16px;
  margin-bottom: var(--oh-gap-md);
}

.oh-dashboard__eligible-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--oh-success);
}

.oh-dashboard__eligible-desc {
  margin: 0;
  font-size: 13px;
  color: var(--oh-text);
  line-height: 1.6;
}

.oh-uploader {
  display: block;
  border: 2px dashed var(--oh-border-strong);
  border-radius: var(--oh-radius-lg);
  padding: var(--oh-gap-lg);
  background: var(--oh-bg-card-muted);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}
.oh-uploader:hover {
  border-color: var(--oh-accent);
  background: var(--oh-accent-soft);
}
.oh-uploader.is-dragover {
  border-color: var(--oh-accent);
  background: var(--oh-accent-soft);
}

.oh-uploader__input {
  display: block;
  margin: 0 auto var(--oh-gap-sm);
}

.oh-uploader__hint {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--oh-gap-md);
}
.oh-uploader__hint strong {
  color: var(--oh-text-strong);
}

.oh-uploader__sub {
  font-size: 12px;
  color: var(--oh-text-muted);
}

.oh-uploader__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--oh-gap-sm);
}

.oh-uploader__item {
  position: relative;
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-md);
  background: var(--oh-bg-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.oh-uploader__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-uploader__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  padding: 4px 6px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.oh-dashboard__buyer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--oh-gap-md);
}

.oh-uploader__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.oh-uploader__remove:hover {
  background: var(--oh-error);
}

.oh-history__list {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
}

.oh-history__item {
  background: var(--oh-bg-card);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-lg);
  padding: var(--oh-gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-sm);
  box-shadow: var(--oh-shadow-sm);
}
.oh-history__item:hover {
  border-color: var(--oh-border-strong);
  box-shadow: var(--oh-shadow-md);
}

.oh-history__head {
  display: flex;
  align-items: center;
  gap: var(--oh-gap-sm);
  flex-wrap: wrap;
  justify-content: space-between;
}

.oh-history__time {
  font-size: 12px;
  color: var(--oh-text-muted);
  margin-left: auto;
}

.oh-history__body {
  display: flex;
  gap: var(--oh-gap-md);
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.oh-history__cover {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius-sm);
  background: var(--oh-bg-card-muted);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.oh-history__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.oh-history__cover-fallback {
  font-family: var(--oh-font-mono);
  color: var(--oh-text-muted);
  font-size: 13px;
}

.oh-history__meta {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oh-history__product {
  font-size: 14px;
  font-weight: 600;
  color: var(--oh-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-history__sub {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.oh-history__points {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: var(--oh-accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 6px 14px;
  border-radius: var(--oh-radius-pill);
  color: var(--oh-accent-strong);
  font-weight: 700;
  font-family: var(--oh-font-display);
}

.oh-history__points-value {
  font-size: 18px;
}

.oh-history__points-unit {
  font-size: 12px;
}

.oh-history__thumbs {
  display: flex;
  gap: var(--oh-gap-sm);
}

.oh-history__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--oh-radius-sm);
  overflow: hidden;
  border: 1px solid var(--oh-border);
  background: var(--oh-bg-card-muted);
}
.oh-history__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-history__notes {
  margin: 0;
  padding: 8px 12px;
  background: var(--oh-bg-card-muted);
  border-radius: var(--oh-radius-sm);
  font-size: 13px;
  color: var(--oh-text);
}

.oh-history__more {
  display: flex;
  justify-content: center;
  margin-top: var(--oh-gap-md);
}

.oh-history__empty:not(:empty) {
  margin-top: var(--oh-gap-md);
}

.oh-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--oh-radius-pill);
  font-size: 12px;
  font-weight: 600;
}
.oh-badge--pending {
  background: var(--oh-info-bg);
  color: var(--oh-info);
}
.oh-badge--approved {
  background: var(--oh-success-bg);
  color: var(--oh-success);
}
.oh-badge--rejected {
  background: var(--oh-error-bg);
  color: var(--oh-error);
}
.oh-badge--revoked {
  background: var(--oh-bg-card-muted);
  color: var(--oh-text-muted);
}
.oh-badge--neutral {
  background: var(--oh-bg-card-muted);
  color: var(--oh-text-muted);
}

html.oh-modal-open {
  overflow: hidden;
}

.oh-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--oh-gap-lg) var(--oh-gap-md);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(2px);
  overflow-y: auto;
  animation: oh-modal-fade 0.18s ease-out;
}
.oh-modal[hidden] {
  display: none;
}

@keyframes oh-modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.oh-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.oh-modal__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px #ffffff;
  transform: scale(1.05);
}

.oh-modal__shell {
  position: relative;
  width: 100%;
  max-width: 980px;
  border-radius: var(--oh-radius-md);
  overflow: hidden;
  background: var(--oh-modal-bg);
  color: var(--oh-modal-text);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  animation: oh-modal-pop 0.22s ease-out;
}

@keyframes oh-modal-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.oh-modal__copy {
  padding: 44px 44px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oh-modal__headline {
  margin: 0 0 16px;
  font-family: var(--oh-font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--oh-modal-text);
  letter-spacing: -0.4px;
  max-width: 22ch;
}

.oh-modal__star {
  color: var(--oh-modal-accent);
  margin-left: 2px;
  font-weight: 700;
}

.oh-modal__sub {
  margin: 0 0 18px;
  font-family: var(--oh-font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  color: var(--oh-modal-accent);
  line-height: 1.3;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  max-width: 36ch;
}

.oh-modal__lede {
  margin: 0;
  font-size: 12.5px;
  color: var(--oh-modal-text-soft);
  line-height: 1.65;
  max-width: 60ch;
}

.oh-modal__divider {
  border: 0;
  border-top: 1px solid var(--oh-modal-divider);
  margin: 22px 0 14px;
  width: 100%;
}

.oh-modal__rules {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  color: var(--oh-modal-accent);
  font-size: 12.5px;
  line-height: 1.7;
}
.oh-modal__rules li {
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.oh-modal__rules li + li {
  margin-top: 2px;
}
.oh-modal__rules + .oh-modal__divider {
  margin-top: 0;
}

.oh-modal__rule-num {
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--oh-modal-accent);
}

.oh-modal__panel {
  margin: 32px 32px 32px 0;
  background: var(--oh-modal-panel);
  border-radius: var(--oh-radius-md);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
  min-width: 0;
  align-self: center;
}

.oh-modal__prompt {
  margin: 0;
  padding: 9px 12px;
  background: rgba(254, 137, 6, 0.18);
  border: 1px solid rgba(254, 137, 6, 0.55);
  color: #ffe5b4;
  border-radius: var(--oh-radius-sm);
  font-size: 13px;
  text-align: center;
}
.oh-modal__prompt[hidden], .oh-modal__prompt:empty {
  display: none;
}

.oh-modal__tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--oh-radius-sm);
}

.oh-modal__tab {
  flex: 1 1 50%;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--oh-radius-sm);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.oh-modal__tab:hover {
  color: #ffffff;
}
.oh-modal__tab.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--oh-text-strong);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.oh-modal__body {
  display: flex;
  flex-direction: column;
  gap: var(--oh-gap-md);
}
.oh-modal__body .oh-form {
  gap: 12px;
}
.oh-modal__body .oh-fcard__field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--oh-modal-text);
  letter-spacing: 0;
  text-transform: none;
}
.oh-modal__body .oh-fcard__field-req {
  color: var(--oh-modal-accent);
  font-weight: 700;
}
.oh-modal__body .oh-input {
  background: #ffffff;
  color: var(--oh-text);
  border: 1px solid transparent;
  border-radius: var(--oh-radius-sm);
  box-shadow: none;
  padding: 11px 13px;
  font-size: 14px;
}
.oh-modal__body .oh-input::placeholder {
  color: #9aa1ad;
}
.oh-modal__body .oh-input:focus {
  outline: none;
  border-color: var(--oh-modal-accent);
  box-shadow: 0 0 0 3px rgba(254, 137, 6, 0.32);
}
.oh-modal__body .oh-form__error {
  background: rgba(185, 28, 28, 0.22);
  border: 1px solid rgba(252, 165, 165, 0.3);
  color: #ffd6d6;
  padding: 10px 12px;
  border-radius: var(--oh-radius-sm);
  font-size: 13px;
}
.oh-modal__body .oh-btn--primary {
  width: 100%;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: var(--oh-radius-sm);
  background: linear-gradient(180deg, var(--oh-modal-accent-2) 0%, var(--oh-modal-accent) 100%);
  color: #ffffff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.2px;
  transition: filter 0.15s, transform 0.05s;
}
.oh-modal__body .oh-btn--primary:hover:not(:disabled) {
  filter: brightness(1.05);
  background: linear-gradient(180deg, var(--oh-modal-accent-2) 0%, var(--oh-modal-accent) 100%);
  color: #ffffff;
}
.oh-modal__body .oh-btn--primary:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.oh-modal__body .oh-btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(254, 137, 6, 0.45);
}
.oh-modal__body .oh-fcard__hint {
  margin: 0;
  font-size: 12px;
  color: var(--oh-modal-accent);
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
}
.oh-modal__body .oh-fcard__footer {
  margin-top: 4px;
  padding-top: var(--oh-gap-md);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 13px;
  color: var(--oh-modal-text-mute);
}
.oh-modal__body .oh-fcard__footer a {
  color: var(--oh-modal-accent);
  font-weight: 600;
  text-decoration: none;
}
.oh-modal__body .oh-fcard__footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.oh-modal__body .oh-auth__sep {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 760px) {
  .oh-modal__shell {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
  .oh-modal__copy {
    padding: 36px 30px 12px;
  }
  .oh-modal__panel {
    margin: 0 30px 30px;
    padding: 22px 22px;
  }
}
@media (max-width: 560px) {
  .oh-modal {
    padding: 0;
  }
  .oh-modal__shell {
    border-radius: 0;
    max-width: none;
    min-height: 100%;
  }
  .oh-modal__copy {
    display: none;
  }
  .oh-modal__panel {
    margin: 0;
    padding: 80px 22px 32px;
    border-radius: 0;
    background: transparent;
  }
  .oh-modal__close {
    top: 12px;
    right: 12px;
  }
}
.oh-toast-host {
  position: fixed;
  z-index: 9999;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

.oh-toast {
  pointer-events: auto;
  background: #1d2a3a;
  color: #fff;
  border-radius: var(--oh-radius-md);
  padding: 12px 16px;
  font-size: 13px;
  box-shadow: var(--oh-shadow-lg);
  border-left: 4px solid var(--oh-info);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
  max-width: 360px;
}
.oh-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.oh-toast--success {
  border-left-color: var(--oh-success);
}
.oh-toast--error {
  border-left-color: var(--oh-error);
}
.oh-toast--info {
  border-left-color: var(--oh-info);
}

.oh-toast__msg {
  line-height: 1.45;
}

/*# sourceMappingURL=main.css.map */
