:root {
  --bg: #030712;
  --bg-2: #07111f;
  --surface: rgba(9, 18, 34, 0.72);
  --surface-2: rgba(14, 26, 48, 0.68);
  --surface-3: rgba(255, 255, 255, 0.055);
  --line: rgba(148, 190, 255, 0.16);
  --line-2: rgba(148, 190, 255, 0.28);
  --text: #f4f8ff;
  --muted: #9eb3d3;
  --muted-2: #6f83a3;
  --blue: #6c9bd2;
  --blue-2: #8cc7ff;
  --cyan: #6ff6ff;
  --violet: #a78bfa;
  --green: #38f59b;
  --yellow: #f6d365;
  --red: #ff5f7a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --glow-blue: 0 0 32px rgba(108, 155, 210, 0.42);
  --glow-cyan: 0 0 34px rgba(111, 246, 255, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at 12% -8%, rgba(108, 155, 210, 0.32), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(111, 246, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(167, 139, 250, 0.12), transparent 30%),
    linear-gradient(180deg, #020611 0%, #07111f 44%, #030712 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(148, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 190, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: -30%;
  pointer-events: none;
  z-index: -1;
  background:
    conic-gradient(
      from 180deg,
      transparent 0deg,
      rgba(108, 155, 210, 0.13) 72deg,
      transparent 128deg,
      rgba(111, 246, 255, 0.11) 210deg,
      transparent 360deg
    );
  filter: blur(70px);
  animation: aurora 18s linear infinite;
  opacity: 0.8;
}

@keyframes aurora {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(148, 190, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.84), rgba(3, 7, 18, 0.62));
  backdrop-filter: blur(22px);
}

.header-inner {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.92), transparent 18%),
    linear-gradient(135deg, #6c9bd2 0%, #6ff6ff 52%, #a78bfa 100%);
  box-shadow: var(--glow-blue), inset 0 0 22px rgba(255,255,255,0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(3,7,18,0.16);
}

.brand-title {
  display: block;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--muted);
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  border-color: rgba(148, 190, 255, 0.18);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 24px rgba(108,155,210,0.12);
}

.container {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  padding: 46px 0 18px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(148, 190, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(108, 155, 210, 0.20), rgba(111,246,255,0.06) 45%, rgba(167,139,250,0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    linear-gradient(90deg, transparent, rgba(111,246,255,0.12), transparent),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 100% 100%, 38px 38px, 38px 38px;
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.95), transparent 78%);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111,246,255,0.24), transparent 62%);
  filter: blur(10px);
}

.status-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 190, 255, 0.22);
  background: rgba(3, 7, 18, 0.42);
  color: var(--muted);
  font-weight: 760;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.035);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 95, 122, 0.7);
}

.status-pill.online .status-dot {
  background: var(--green);
  box-shadow: 0 0 18px rgba(56, 245, 155, 0.72);
}

.status-pill.warn .status-dot {
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(246, 211, 101, 0.7);
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 18px 0 12px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  background: linear-gradient(135deg, #ffffff 0%, #cfe6ff 42%, #77f6ff 78%, #a78bfa 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 190, 255, 0.18);
  background: rgba(255,255,255,0.065);
  color: var(--text);
  cursor: pointer;
  transition: 0.18s ease;
  box-shadow: inset 0 0 18px rgba(255,255,255,0.03);
}

.btn.primary {
  border-color: rgba(111,246,255,0.38);
  background:
    linear-gradient(135deg, rgba(108,155,210,0.92), rgba(111,246,255,0.42)),
    rgba(255,255,255,0.05);
  box-shadow: 0 0 26px rgba(108,155,210,0.24);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(111,246,255,0.45);
  background: rgba(255,255,255,0.105);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 19px;
  border: 1px solid rgba(148, 190, 255, 0.15);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
    rgba(6, 13, 25, 0.64);
  box-shadow: 0 16px 50px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 0%, rgba(111,246,255,0.10), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent 34%);
  opacity: 0.9;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  border-color: rgba(111,246,255,0.28);
  box-shadow: 0 20px 70px rgba(0,0,0,0.30), 0 0 30px rgba(108,155,210,0.10);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.card h2,
.card h3 {
  margin: 0;
}

.card h2 {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.card h3 {
  font-size: 15px;
  color: var(--muted);
  font-weight: 760;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-value {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 860;
  letter-spacing: -0.045em;
}

.metric-sub {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 12px;
}

.kv {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 9px 14px;
  line-height: 1.65;
  font-size: 14px;
}

.kv div:nth-child(odd) {
  color: var(--muted);
}

.code {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid rgba(111,246,255,0.18);
  background: rgba(111,246,255,0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #eaffff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(72, 1fr);
  gap: 4px;
  margin-top: 15px;
}

.tick {
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.055);
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.03);
}

.tick.online {
  background:
    linear-gradient(180deg, rgba(56,245,155,.95), rgba(56,245,155,.34));
  box-shadow: 0 0 16px rgba(56,245,155,0.12);
}

.tick.offline {
  background:
    linear-gradient(180deg, rgba(255,95,122,.9), rgba(255,95,122,.32));
  box-shadow: 0 0 16px rgba(255,95,122,0.12);
}

.tick.unknown {
  background: rgba(255,255,255,0.055);
}

.chart {
  width: 100%;
  height: 230px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 190, 255, 0.12);
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(0,0,0,0.18);
  background-size: 34px 34px;
}

.toolbar {
  display: grid;
  grid-template-columns: 1.5fr 180px 180px;
  gap: 12px;
  margin: 18px 0;
}

.control {
  width: 100%;
  border: 1px solid rgba(148, 190, 255, 0.16);
  background: rgba(255,255,255,0.075);
  color: var(--text);
  border-radius: 15px;
  padding: 12px 13px;
  outline: none;
}

.control::placeholder {
  color: rgba(158,179,211,0.72);
}

.control:focus {
  border-color: rgba(111,246,255,0.45);
  box-shadow: 0 0 0 4px rgba(111,246,255,0.10);
}

select.control option {
  color: #111827;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(148, 190, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,0.18);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

th,
td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  text-align: left;
  font-size: 14px;
}

th {
  position: sticky;
  top: 0;
  color: var(--muted);
  font-weight: 760;
  background: rgba(10, 20, 38, 0.92);
  backdrop-filter: blur(12px);
}

td {
  color: #dce8fb;
}

tr:hover td {
  background: rgba(255,255,255,0.035);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 190, 255, 0.16);
  background: rgba(255,255,255,0.07);
  font-size: 12px;
  font-weight: 780;
}

.badge.online {
  color: #c2ffe0;
  border-color: rgba(56,245,155,0.26);
  background: rgba(56,245,155,0.10);
}

.badge.offline {
  color: #ffd4dc;
  border-color: rgba(255,95,122,0.26);
  background: rgba(255,95,122,0.10);
}

.section {
  padding: 18px 0;
}

.site-footer {
  margin-top: 38px;
  border-top: 1px solid rgba(148, 190, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(3,7,18,0.28), rgba(3,7,18,0.72));
}

.footer-inner {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d5e9ff;
}

.notice {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid.cards,
  .grid.two {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    padding: 24px;
  }

  .timeline {
    grid-template-columns: repeat(36, 1fr);
  }

  .tick {
    height: 30px;
  }

  .brand {
    min-width: auto;
  }
}

/* ==================================================
   Premium product design layer
   ================================================== */

body {
  letter-spacing: -0.01em;
}

body::before {
  background-image:
    linear-gradient(rgba(148, 190, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 190, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(111, 246, 255, 0.08), transparent 30%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

.site-header {
  border-bottom: 1px solid rgba(160, 206, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.86), rgba(3, 7, 18, 0.54)),
    radial-gradient(circle at 50% 0%, rgba(108,155,210,0.12), transparent 48%);
}

.header-inner {
  padding: 18px 0;
}

.brand-mark {
  border-radius: 18px;
  transform: rotate(-6deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 22px;
  border: 1px solid rgba(111, 246, 255, 0.16);
  opacity: 0.9;
}

.brand-title {
  font-size: 15px;
}

.brand-sub {
  font-size: 10px;
  color: rgba(187, 211, 245, 0.62);
}

.nav {
  padding: 5px;
  border: 1px solid rgba(148, 190, 255, 0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.025);
}

.nav a {
  font-size: 13px;
}

.nav a.active {
  background:
    linear-gradient(135deg, rgba(108,155,210,0.34), rgba(111,246,255,0.13));
}

.hero {
  padding-top: 54px;
}

.hero-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(166, 214, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    radial-gradient(circle at 82% 18%, rgba(111,246,255,0.20), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(108,155,210,0.22), transparent 34%),
    rgba(4, 10, 22, 0.74);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.52),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.hero-card::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(111,246,255,0.12) 38%, transparent 62%),
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
}

.hero-card::after {
  right: -70px;
  top: -90px;
  width: 360px;
  height: 360px;
  background:
    radial-gradient(circle, rgba(111,246,255,0.28), rgba(108,155,210,0.10) 42%, transparent 70%);
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -0.085em;
}

.hero p {
  font-size: 15.5px;
  color: rgba(216, 229, 249, 0.72);
}

.status-pill {
  width: fit-content;
  border-color: rgba(111,246,255,0.25);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(3,7,18,0.38);
}

.btn {
  position: relative;
  overflow: hidden;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(140%);
}

.btn.primary {
  color: #f8fdff;
  background:
    linear-gradient(135deg, rgba(108,155,210,1), rgba(111,246,255,0.38)),
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent);
  box-shadow:
    0 16px 42px rgba(108,155,210,0.25),
    inset 0 1px 0 rgba(255,255,255,0.26);
}

.grid.cards {
  gap: 18px;
}

.card {
  padding: 21px;
  border-radius: 26px;
  border-color: rgba(166, 214, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035)),
    radial-gradient(circle at 100% 0%, rgba(111,246,255,0.085), transparent 30%),
    rgba(7, 15, 30, 0.72);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.card:hover {
  transform: translateY(-2px);
  transition: 0.22s ease;
}

.metric-label {
  font-size: 11px;
  color: rgba(183, 207, 240, 0.66);
}

.metric-value {
  font-size: 30px;
}

.metric-sub {
  color: rgba(154, 176, 209, 0.64);
}

.card h2 {
  font-size: 23px;
}

.notice {
  color: rgba(183, 207, 240, 0.66);
}

.timeline {
  gap: 5px;
}

.tick {
  height: 42px;
  border-radius: 12px;
  opacity: 0.95;
}

.tick.online {
  background:
    linear-gradient(180deg, rgba(56,245,155,0.95), rgba(56,245,155,0.20)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.42), transparent 36%);
}

.tick.offline {
  background:
    linear-gradient(180deg, rgba(255,95,122,0.95), rgba(255,95,122,0.18)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.34), transparent 36%);
}

.chart {
  height: 250px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(111,246,255,0.08), transparent 30%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    rgba(0,0,0,0.20);
  background-size: 100% 100%, 36px 36px, 36px 36px;
}

.table-wrap {
  border-radius: 24px;
}

th {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}

td {
  font-size: 13.5px;
}

.badge {
  backdrop-filter: blur(12px);
}

.site-footer {
  margin-top: 54px;
  background:
    radial-gradient(circle at 50% 0%, rgba(108,155,210,0.13), transparent 36%),
    linear-gradient(180deg, rgba(3,7,18,0.36), rgba(3,7,18,0.86));
}

.footer-inner {
  padding: 30px 0;
}

/* Toast */

.toast-root {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: min(360px, calc(100vw - 44px));
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(111, 246, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(14, 26, 48, 0.96), rgba(7, 15, 30, 0.92)),
    radial-gradient(circle at 0% 0%, rgba(111,246,255,0.18), transparent 38%);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.42),
    0 0 26px rgba(108,155,210,0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
  color: #f4f8ff;
  font-weight: 720;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition: 0.26s cubic-bezier(.2,.8,.2,1);
  backdrop-filter: blur(18px);
}

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(56,245,155,0.16);
  border: 1px solid rgba(56,245,155,0.38);
  box-shadow: 0 0 18px rgba(56,245,155,0.20);
}

.toast-icon::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #bfffe0;
  border-bottom: 2px solid #bfffe0;
  transform: rotate(-45deg) translate(1px, -1px);
}

@media (max-width: 980px) {
  .nav {
    border-radius: 22px;
    justify-content: flex-start;
  }

  .hero-card {
    min-height: 380px;
  }

  .tick {
    height: 32px;
    border-radius: 9px;
  }

  .toast-root {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .toast {
    min-width: 0;
    width: 100%;
  }
}
