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

:root {
  --text: #e6ffff;
  --accent: #00e5ff;
  --accent2: #00ffd5;
  --border: rgba(255, 255, 255, 0.22);
}

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

html,
body {
  background: #050a11;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

p {
  margin: 0 0 1.1rem;
}

a {
  color: inherit;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px;
}

.hero {
  display: grid;
  place-items: center;
  padding: 72px 0 48px;
}

.hero-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero-card {
    padding: 28px 24px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(0, 229, 255, 0.9);
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: 999px;
}

h1 {
  margin: 6px 0 10px;
  font-family: Orbitron, Inter, system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.05;
}

.sub {
  margin-top: 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.92;
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

.form {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(185, 242, 255, 0.85);
  min-width: 0;
  box-sizing: border-box;
}

.field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(185, 242, 255, 0.72);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  font: 500 15px Inter, system-ui, sans-serif;
  color: var(--text);
  background: rgba(0, 17, 23, 0.58);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(0, 229, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

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

.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"%3E%3Cpath d="M1 1.5L6 6.5L11 1.5" stroke="%2300E5FF" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.field.full {
  grid-column: 1 / -1;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(185, 242, 255, 0.55);
}

.submit-btn {
  width: 100%;
  margin-top: 6px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  font-weight: 700;
  color: #001217;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border: none;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 229, 255, 0.35), 0 0 18px rgba(0, 229, 255, 0.25) inset;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(0, 229, 255, 0.45), 0 0 18px rgba(0, 229, 255, 0.35) inset;
}

.btn[disabled],
.btn[aria-disabled='true'] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.2), 0 0 12px rgba(0, 229, 255, 0.2) inset;
}

.form-feedback {
  margin-top: 12px;
  font-size: 13px;
  min-height: 18px;
  color: rgba(185, 242, 255, 0.7);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.form-feedback.pending {
  color: rgba(185, 242, 255, 0.75);
}

.form-feedback.show {
  opacity: 1;
}

.form-feedback.success {
  color: rgba(0, 229, 255, 0.85);
}

.form-feedback.error {
  color: #ff8383;
}

.footer-divider {
  position: relative;
  height: 1px;
  margin: 64px 0 0;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0) 0%, rgba(0, 229, 255, 0.6) 50%, rgba(0, 229, 255, 0) 100%);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
  overflow: hidden;
}

.footer-divider::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -20%;
  width: 18%;
  height: 7px;
  filter: blur(6px);
  background: radial-gradient(circle, rgba(0, 255, 255, 0.8) 0%, rgba(0, 255, 255, 0) 70%);
  animation: dividerSweep 6s linear infinite;
}

@keyframes dividerSweep {
  0% {
    left: -20%;
  }
  100% {
    left: 110%;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(185, 242, 255, 0.85);
}

@media (min-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-left,
  .footer-right {
    text-align: left;
  }
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(185, 242, 255, 0.9);
  text-decoration: none;
  border-radius: 6px;
  opacity: 0.9;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
}

.link {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}

.link:hover,
.link:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.site-footer .byline {
  font-family: Orbitron, Inter, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: rgba(185, 242, 255, 0.95);
}
:root{ --text:#e6ffff; --accent:#00e5ff; --accent2:#00ffd5; --border:rgba(255,255,255,.22); }
.container{max-width:1000px;margin:0 auto;padding:28px}
.header{display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:10;background:rgba(0,0,0,.3);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.14)}
.logo{display:inline-grid;place-items:center;width:40px;height:40px;border-radius:14px;background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));border:1px solid rgba(255,255,255,.45);box-shadow:0 0 0 1px rgba(255,255,255,.12) inset;font:700 17px Orbitron,Inter;color:#001217}
.hero{display:grid;place-items:center;padding:72px 0 48px}
.hero-card{position:relative;border:1px solid rgba(255,255,255,.22);background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));border-radius:20px;padding:36px;box-shadow:0 22px 60px rgba(0,0,0,.35);overflow:hidden}
h1{font-family:Orbitron,Inter;font-size:42px;line-height:1.05;margin:6px 0 10px}
.sub{opacity:.9;max-width:680px}
.row{display:grid;grid-template-columns:1fr;gap:18px;margin-top:20px}
@media(min-width:860px){.row{grid-template-columns:1fr auto}}
.form{border:1px solid rgba(255,255,255,.22);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));border-radius:16px;padding:20px}
.form-grid{display:grid;gap:14px;margin-bottom:18px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.field{display:flex;flex-direction:column;gap:6px;font-size:13px;color:rgba(185,242,255,0.85)}
.field span{font-weight:600;letter-spacing:.2px;text-transform:uppercase;font-size:12px;color:rgba(185,242,255,0.72)}
.field input,.field select,.field textarea{background:rgba(0,17,23,.55);border:1px solid rgba(255,255,255,.22);color:var(--text);padding:12px;border-radius:10px;font:500 15px Inter,system-ui,sans-serif;width:100%}
.field textarea{resize:vertical;min-height:108px}
.field select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" fill="none"%3E%3Cpath d="M1 1.5L6 6.5L11 1.5" stroke="%2300E5FF" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E');background-repeat:no-repeat;background-position:right 12px center;padding-right:36px}
.field.full{grid-column:1/-1}
.field input::placeholder,.field textarea::placeholder{color:rgba(185,242,255,0.55)}
.submit-btn{width:100%;text-align:center;margin-top:6px}
.btn{display:inline-block;background:linear-gradient(180deg,var(--accent),var(--accent2));color:#001217;border:none;border-radius:12px;padding:12px 16px;font-weight:700;text-decoration:none;box-shadow:0 8px 26px rgba(0,229,255,.35),0 0 18px rgba(0,229,255,.25) inset}
.footer-divider{position:relative;height:1px;margin:48px 0 0;background:linear-gradient(90deg, rgba(0,229,255,0) 0%, rgba(0,229,255,0.6) 50%, rgba(0,229,255,0) 100%);box-shadow:0 0 10px rgba(0,229,255,0.35);overflow:hidden}
.footer-divider::before{content:"";position:absolute;top:-3px;left:-20%;width:18%;height:7px;filter:blur(6px);background:radial-gradient(circle, rgba(0,255,255,0.8) 0%, rgba(0,255,255,0) 70%);animation:dividerSweep 6s linear infinite}
@keyframes dividerSweep{0%{left:-20%}100%{left:110%}}
.site-footer{border-top:1px solid rgba(255,255,255,0.08);backdrop-filter:blur(6px);background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0))}
.site-footer .footer-inner{display:flex;flex-direction:column;gap:10px;align-items:center;justify-content:center;padding:18px 0;font-size:13px;color:rgba(185,242,255,0.85)}
@media(min-width:768px){.site-footer .footer-inner{flex-direction:row;justify-content:space-between}}
.footer-left,.footer-right{display:flex;align-items:center;gap:10px;text-align:center}
@media(min-width:768px){.footer-left,.footer-right{text-align:left}}
.footer-social{display:flex;gap:10px}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:6px;color:rgba(185,242,255,0.9);opacity:.9;transition:transform .15s ease,box-shadow .15s ease,opacity .2s ease;text-decoration:none}
.footer-social a:hover{opacity:1;transform:translateY(-1px);box-shadow:0 0 12px rgba(0,229,255,0.35)}
.footer-social svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.75}
.site-footer .byline{font-family:Orbitron,Inter,system-ui,sans-serif;font-weight:600;letter-spacing:.6px;color:rgba(185,242,255,0.95)}
