:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #f0f4ff;
  --ink: #0f172a;
  --muted: #5c6b82;
  --border: #d8e1ef;
  --primary: #1864ff;
  --primary-dark: #114ec9;
  --danger: #cc3344;
  --success: #0f9d68;
  --warning: #d18315;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 50px rgba(16, 37, 78, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  margin: 0;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1f6bff, #19b7ff);
  box-shadow: 0 0 0 6px rgba(31, 107, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.58rem 1rem;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.btn-lg {
  padding: 0.76rem 1.2rem;
  font-size: 1rem;
}

.btn.small {
  padding: 0.45rem 0.78rem;
  font-size: 0.82rem;
}

.btn-solid {
  color: #ffffff;
  background: linear-gradient(130deg, var(--primary), #1f7eff);
  box-shadow: 0 14px 24px rgba(24, 100, 255, 0.25);
}

.btn-solid:hover {
  box-shadow: 0 18px 28px rgba(24, 100, 255, 0.28);
}

.btn-outline {
  color: var(--primary);
  background: #ffffff;
  border-color: #b7cbf5;
}

.btn-ghost {
  background: transparent;
  border-color: #d2ddec;
  color: #344256;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.75rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c6d3e8;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 0.62rem 0.68rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(24, 100, 255, 0.15);
  border-color: #2a75ff;
}

label {
  display: block;
  margin-bottom: 0.32rem;
  font-weight: 700;
  font-size: 0.87rem;
  color: #2d3e5a;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table th,
.table td {
  border-bottom: 1px solid #e2eaf6;
  padding: 0.62rem 0.4rem;
  text-align: left;
}

.table th {
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #516382;
}

.mono {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  word-break: break-all;
}

.hidden {
  display: none !important;
}

.subtle {
  color: var(--muted);
  font-size: 0.87rem;
}

code {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: #eef4ff;
  padding: 0.08rem 0.32rem;
  border-radius: 6px;
}

@media (max-width: 780px) {
  .container {
    width: min(1140px, 94vw);
  }
}

