/* ========== SeekSplore Landing (External CSS, Clean Version) ========== */

:root {
  --bg:#0b0f17; 
  --bg2:#121826;
  --fg:#e9eef7; 
  --muted:#a9bad1;
  --muted-strong:#d7e6ff; 
  --accent:#6ae0d9;
  --ring:rgba(255,255,255,.18);
  --panel:rgba(255,255,255,.05);
  --stroke:rgba(255,255,255,.10);
  --chip:rgba(106,224,217,.10);
  --chipstroke:rgba(106,224,217,.45);
}

/* Reset-lite */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--fg);

  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;

  /* Padding gives breathing room and adjusts naturally on large screens */
  padding: clamp(60px, 12vh, 160px) 24px 24px;
}

.wrap {
  width: min(960px, 100%);
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: clamp(20px, 3.2vw, 36px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}

/* ================= Header ================= */
.top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.logo {
  max-width: 260px;     /* scales based on width */
  height: auto;         /* keeps proportions */
  flex-shrink: 0;       /* don’t let it collapse */
}

.titlebox {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}

.tag {
  color: var(--muted-strong);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 700;
  opacity: .95;
  text-shadow: 0 1px 1px rgba(0,0,0,.25);
}

h1 {
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.15;
}

/* ================= Content ================= */
.lead {
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0 0 18px;
}

.chips {
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin: 10px 0 24px;
}
.chip {
  background: var(--chip);
  border: 1px solid var(--chipstroke);
  color: #c9f7f4;
  padding: 8px 12px; 
  border-radius: 12px; 
  font-size: 14px;
}

.hr { 
  height: 1px; 
  background: var(--stroke); 
  margin: 20px 0; 
}

/* ================= Grid Layout ================= */
.grid {
  display: grid; 
  grid-template-columns: 1.1fr .9fr; 
  gap: 28px;
}

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; }
  .top { justify-content: center; text-align: center; }
  .titlebox { align-items: center; }
  .logo { max-width: 200px; }
}

/* ================= Form ================= */
form { display: grid; gap: 12px; }

input, textarea, button {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: rgba(255,255,255,.04);
  color: var(--fg);
  padding: 12px 14px;
  font-size: 16px;
}

input::placeholder, textarea::placeholder { 
  color: #c6cfda; opacity: .8; 
}
textarea { 
  min-height: 120px; 
  resize: vertical; 
}

button {
  cursor: pointer; 
  font-weight: 800; 
  letter-spacing: .02em;
  border: none;
  background: linear-gradient(90deg, var(--accent), #7ce3c7);
  color: #031b19;
  transition: transform .04s ease-in-out, filter .2s ease;
}
button:active { transform: scale(.99); }
button:hover { filter: brightness(1.05); }

/* ================= Footer & Notes ================= */
.note { font-size: 13px; color: var(--muted); }
.status { margin-top: 6px; font-size: 14px; min-height: 1.2em; }
.hide { display: none; }
.footer { margin-top: 12px; font-size: 14px; color: var(--muted); }
a { color: #a8eeea; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

/* ================= Aside ================= */
.pilot-box {
  height: 100%;
  border: 1px dashed var(--ring);
  border-radius: 16px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--muted);
  padding: 16px; 
  text-align: center;
}
