:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #ffb347;
  --accent-soft: rgba(255, 179, 71, 0.15);
  --text: #f7f7ff;
  --muted: #b1b5c8;
  --border: #262b3f;
  --error: #ff6b6b;
  --success: #9be7a9;
  --radius-lg: 18px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* Reset-ish */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    -apple-system, sans-serif;
  min-height: 100vh;
  color: var(--text);

  background-color: var(--bg);
  background-image:
    linear-gradient(
      145deg,
      rgba(3, 7, 30, 0.55),
      rgba(5, 8, 25, 0.60),
      rgba(5, 8, 22, 0.65)
    ),
    url("https://img1.wsimg.com/isteam/stock/u0EoJwBZYdHjkJYO1");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffb347, #ff5e62);
  box-shadow: 0 0 25px rgba(255, 179, 71, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(3, 7, 30, 0.85);
  backdrop-filter: blur(12px);
}

/* Main layout */

main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 32px;
  align-items: start;
}

@media (max-width: 800px) {
  main {
    grid-template-columns: 1fr;
  }
  .page {
    padding-top: 18px;
  }
}

/* Hero */

.hero {
  padding: 24px 22px 22px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at top left,
      rgba(255, 179, 71, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 94, 98, 0.14),
      transparent 55%
    ),
    rgba(4, 7, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.hero-highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.hero-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.35);
}

.coming-soon {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Contact card */

.contact-card {
  padding: 22px 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(6, 9, 32, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.contact-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Form */

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.required {
  color: var(--accent);
}

input,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(3, 7, 30, 0.94);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #606680;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.4);
}

.form-row-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.form-row-inline > div {
  flex: 1;
}

@media (min-width: 640px) {
  .form-row-inline {
    flex-direction: row;
  }
}

.helper-text {
  font-size: 0.78rem;
  color: var(--muted);
}

#form-status {
  min-height: 1.1em;
}

/* Button */

.btn-primary {
  margin-top: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffb347, #ff5e62);
  color: #1b1020;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out,
    filter 0.08s ease-out;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
}

/* Footer */

footer {
  padding: 12px 16px 20px;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: center;
}

.footer-inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
