@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f5f7;
  --bg2: #111113;
  --soft: #fbfbfd;
  --soft2: #ffffff;
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(15, 23, 42, 0.12);
  --line-soft: rgba(15, 23, 42, 0.08);
  --text: #1d1d1f;
  --text-2: #424245;
  --muted: #6e6e73;
  --brand: #0071e3;
  --brand2: #0062c3;
  --brand-bg: #e8f2fd;
  --white: #ffffff;
  --accent: #00a36c;
  --sky: #8fb7ff;
  --hero-start: #f8f9ff;
  --hero-mid: #eef2ff;
  --hero-end: #f7f8fc;
  --hero-text: #2f2f31;
  --hero-muted: #5f5f66;
  --hero-dim: rgba(255, 255, 255, 0.55);
  --hero-border: rgba(255, 255, 255, 0.7);
  --hero-sep: rgba(15, 23, 42, 0.08);

  --space-1: 6px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 28px;
  --space-5: 40px;
  --space-6: 56px;
  --space-7: 76px;
  --space-8: 96px;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 26px 60px rgba(15, 23, 42, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% -20%, #eef6ff 0%, transparent 38%),
    radial-gradient(circle at 100% 0%, #f1efff 0%, transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

section {
  padding: var(--space-7) 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin-top: 0;
}

h1 {
  margin-bottom: var(--space-4);
  font-size: clamp(36px, 4.9vw, 64px);
}

h2 {
  font-size: clamp(26px, 3.3vw, 40px);
  margin-bottom: 14px;
}

h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.lead {
  font-size: clamp(15.5px, 1.9vw, 17.5px);
  color: var(--muted);
  margin: 0 0 var(--space-4);
  line-height: 1.72;
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 20px;
  margin: var(--space-2) 0 0;
}

li {
  margin-bottom: var(--space-1);
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.14s;
}

.btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand), white 25%);
  outline-offset: 2px;
}

.btn.primary {
  background: linear-gradient(180deg, #0a84ff 0%, var(--brand) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.32);
}

.btn.primary:hover {
  background: var(--brand2);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border-color: var(--line);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.cta {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
}

.hero {
  padding: var(--space-8) 0 var(--space-7);
  background: linear-gradient(148deg, var(--hero-start) 0%, var(--hero-mid) 45%, var(--hero-end) 100%);
  color: var(--text);
  position: relative;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -220px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.14) 0%, rgba(0, 113, 227, 0) 72%);
  pointer-events: none;
}

.hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--hero-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.hero-grid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
}

.hero-card,
.hero-side {
  border-radius: var(--r-lg);
  background: var(--hero-dim);
  border: 1px solid var(--hero-border);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.hero-card p {
  margin: 0;
}

.hero-side ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.hero-side li {
  color: var(--hero-muted);
  padding: 9px 0 9px 22px;
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--hero-sep);
  font-size: 14.5px;
}

.hero-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #50a9ff, var(--brand));
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(8px);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.kpi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.kpi:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.kpi strong {
  display: block;
  font-size: 17px;
  margin-bottom: 9px;
}

.kpi span {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.58;
}

.price-box {
  background: linear-gradient(148deg, #161617 0%, #1f2732 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.price-box h2,
.price-box p {
  color: #fff;
}

.price-box p {
  color: #cfd2da;
  line-height: 1.7;
}

.price-box-info ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 var(--space-4);
}

.price-box-info li {
  color: #d7d9e0;
  padding: 11px 0 11px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.5;
}

.price-box-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3bd089;
  font-weight: 700;
}

.price-box .btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 253, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 13px var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo img {
  width: 28px;
  height: 28px;
}

.nav-logo .logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand2);
}

.nav-links .btn-primary {
  background: linear-gradient(180deg, #0a84ff 0%, var(--brand) 100%);
  color: #fff;
  padding: 9px 17px;
  border-radius: 999px;
}

.nav-links .btn-primary:hover {
  color: #fff;
  box-shadow: 0 7px 18px rgba(0, 113, 227, 0.28);
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-user-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-panel-cta,
.nav-logout-cta {
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  background: transparent;
  border: 0;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.contact-section {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--line-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: var(--space-7);
  align-items: start;
}

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.contact-form-wrap .sub {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.field {
  margin-bottom: var(--space-3);
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 12.5px;
  margin-bottom: 6px;
  color: var(--text-2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(0, 113, 227, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(180deg, #0a84ff 0%, var(--brand) 100%);
  color: #fff;
  transition: transform 0.16s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  box-shadow: 0 10px 20px rgba(0, 113, 227, 0.24);
  transform: translateY(-1px);
}

.form-status {
  margin-top: var(--space-2);
  font-size: 14px;
  min-height: 1.4em;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #b91c1c;
}

.footer {
  background: #f3f3f5;
  color: var(--muted);
  padding: var(--space-7) 0 var(--space-4);
}

.footer .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-5);
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-2);
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-lockup img {
  height: 32px;
  width: auto;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
}

.footer-brand > p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.footer-brand strong {
  color: var(--text-2);
}

.legal-main {
  padding: var(--space-5) var(--space-4) var(--space-8);
  max-width: 860px;
  margin: var(--space-5) auto var(--space-7);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.legal-main--wide {
  max-width: 980px;
}

.legal-main h1 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.legal-main .legal-updated {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 var(--space-4);
}

.legal-main h2 {
  font-size: 1.15rem;
  margin: 2rem 0 10px;
}

.legal-main section {
  padding: 0;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.64;
}

.legal-main a {
  color: var(--brand2);
}

.pg-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-4) var(--space-7);
}

.pg-hero {
  background: linear-gradient(150deg, #f8faff 0%, #eef3ff 58%, #f8fafc 100%);
  border-radius: var(--r-xl);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.pg-banner {
  background: var(--brand-bg);
  border: 1px solid #cfe4fb;
  border-radius: var(--r-md);
  padding: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--text-2);
}

.pg-config {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.pg-config code {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 10px;
  color: var(--text);
}

.pg-grid {
  display: grid;
  gap: var(--space-3);
}

.pg-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.pg-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.pg-fields {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.pg-fields label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-2);
}

.pg-fields input,
.pg-fields select,
.pg-fields textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.pg-actions button {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #0a84ff 0%, var(--brand) 100%);
  color: var(--white);
  transition: transform 0.16s ease, box-shadow 0.2s ease;
}

.pg-actions button:hover:not(:disabled) {
  box-shadow: 0 9px 18px rgba(0, 113, 227, 0.24);
  transform: translateY(-1px);
}

.pg-out-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
}

.pg-copy-btn {
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pg-copy-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(15, 23, 42, 0.2);
}

.pg-out {
  margin-top: var(--space-2);
  background: #111113;
  color: #e8e8ed;
  border-radius: var(--r-md);
  padding: var(--space-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.79rem;
  overflow: auto;
  max-height: 420px;
  border: 1px solid #232327;
}

.pg-foot {
  margin-top: var(--space-4);
  font-size: 0.82rem;
  color: var(--muted);
}

.app-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--space-5) var(--space-4) var(--space-7);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.app-topbar h1 {
  margin: 0;
}

.app-topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.app-topbar-actions button {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #0a84ff 0%, var(--brand) 100%);
  color: var(--white);
}

.app-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.app-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.app-login-card {
  max-width: 520px;
  margin: 0 auto;
}

.app-form {
  display: grid;
  gap: 10px;
  margin-top: var(--space-3);
}

.app-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

.app-form input {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.app-form button {
  margin-top: 6px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #0a84ff 0%, var(--brand) 100%);
  color: var(--white);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-2) var(--space-4) var(--space-3);
    background: var(--soft2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 0;
  }

  .nav-links.mobile-menu {
    display: flex;
  }

  .nav-links a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-auth {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: var(--space-2);
    margin-top: var(--space-1);
    border-top: 1px solid var(--line-soft);
    gap: var(--space-2);
  }

  .nav-user-label {
    max-width: 100%;
    text-align: center;
  }

  .hero-grid,
  .contact-grid,
  .price-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
  }

  .price-box {
    padding: var(--space-5);
    gap: var(--space-5);
  }

  .pg-grid {
    grid-template-columns: 1fr;
  }

  .app-topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  section {
    padding: var(--space-5) 0;
  }

  h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .lead {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

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

  .cta .btn {
    text-align: center;
  }

  .contact-form-wrap,
  .legal-main,
  .pg-hero,
  .pg-card {
    border-radius: var(--r-md);
  }
}

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

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #08090b;
    --soft: #0d1117;
    --soft2: #0f131b;
    --card: rgba(20, 24, 33, 0.78);
    --line: rgba(255, 255, 255, 0.13);
    --line-soft: rgba(255, 255, 255, 0.08);
    --text: #f5f7fb;
    --text-2: #d7dbe4;
    --muted: #a8b0c1;
    --brand-bg: rgba(0, 113, 227, 0.16);
    --hero-start: #090c12;
    --hero-mid: #0f1725;
    --hero-end: #111827;
    --hero-muted: #c8d4ea;
    --hero-dim: rgba(20, 24, 34, 0.72);
    --hero-border: rgba(255, 255, 255, 0.12);
    --hero-sep: rgba(255, 255, 255, 0.09);
  }

  body {
    background:
      radial-gradient(circle at 0% -20%, #0d1d36 0%, transparent 35%),
      radial-gradient(circle at 100% 0%, #221233 0%, transparent 28%),
      var(--bg);
  }

  .contact-section {
    background: rgba(255, 255, 255, 0.02);
  }

  .header {
    background: rgba(10, 13, 18, 0.78);
  }

  .nav-links .btn-primary,
  .btn.primary,
  .btn-submit,
  .pg-actions button {
    box-shadow: none;
  }

  .footer {
    background: #07090d;
  }

  .price-box {
    background: linear-gradient(148deg, #0a0f17 0%, #1a2538 100%);
  }

  .pg-out {
    background: #090b10;
    border-color: #1d2230;
  }
}
