@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #090b12;
  --bg-soft: #121729;
  --text: #f3f6ff;
  --muted: #98a2bf;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(15, 22, 38, 0.72);
  --accent: #ff5f2e;
  --accent-2: #37d5ff;
  --glow: rgba(55, 213, 255, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(255, 95, 46, 0.2), transparent 60%),
    radial-gradient(900px 540px at 90% 0%, rgba(55, 213, 255, 0.18), transparent 62%),
    linear-gradient(155deg, #070910 0%, #0d1324 42%, #090b12 100%);
  color: var(--text);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(9, 11, 18, 0.9), rgba(12, 20, 37, 0.82));
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.site-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.site-brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-brand-text strong {
  font-family: 'Chakra Petch', sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
}

.site-brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav a {
  color: #dbe4ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-2);
  text-decoration: none;
}

.site-nav a.is-active {
  color: #ffffff;
  background: linear-gradient(120deg, rgba(55, 213, 255, 0.22), rgba(255, 95, 46, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 6px 18px rgba(0, 0, 0, 0.26);
}

.site-cta {
  border: 0;
  border-radius: 999px;
  color: #090b12;
  background: linear-gradient(115deg, var(--accent-2), #66e4ff 45%, var(--accent));
  padding: 11px 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 22px rgba(55, 213, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 12px 26px rgba(55, 213, 255, 0.44);
}

.site-banner {
  max-width: 1120px;
  margin: 18px auto 0;
  padding: 0 20px;
}

.site-banner img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.wrap {
  max-width: 1020px;
  margin: 18px auto 0;
  padding: 30px;
}

main.wrap {
  background: linear-gradient(180deg, rgba(11, 17, 31, 0.88), rgba(8, 12, 22, 0.95));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

h1,
h2,
h3 {
  font-family: 'Chakra Petch', sans-serif;
  color: #ffffff;
  line-height: 1.25;
  margin-top: 1.6em;
  margin-bottom: 0.65em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-top: 0.2em;
}

h2 {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  padding-bottom: 10px;
}

h3 {
  font-size: 1.15rem;
}

p,
li,
label,
input,
textarea {
  color: #d5dbed;
  font-size: 1rem;
}

p.lead,
.small {
  color: var(--muted);
}

p.lead {
  font-size: 1.08rem;
  margin-top: 0;
}

.card {
  background: linear-gradient(160deg, rgba(15, 23, 40, 0.9), rgba(10, 16, 30, 0.76));
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-style: solid;
  border-width: 1px;
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0;
}

ul,
ol {
  padding-left: 22px;
}

a {
  color: var(--accent-2);
}

a:hover {
  color: #84e8ff;
}

footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top-color: var(--line);
  border-top-style: solid;
  border-top-width: 1px;
}

input,
textarea {
  color: #f3f6ff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
  border-style: solid;
  border-width: 1px;
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(55, 213, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(55, 213, 255, 0.16);
}

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

.grid label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #e8eeff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(115deg, var(--accent-2), #66e4ff 45%, var(--accent));
  color: #090b12;
  padding: 12px 18px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px rgba(55, 213, 255, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(55, 213, 255, 0.44);
}

header img {
  max-width: 100%;
}

@media (max-width: 880px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .site-cta {
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .site-brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-cta {
    width: 100%;
    margin-top: 6px;
  }

  main.wrap {
    border-radius: 16px;
  }

  .wrap {
    padding: 30px;
  }
}
