/* ==========================================================================
   Times International — coming soon
   Palette reads like a night-time instrument cluster: graphite panel, one
   charge-blue accent for progress, one instrument amber reserved for actions.
   ========================================================================== */

:root {
  --ink:     #0A0C10;   /* base */
  --carbon:  #11161D;   /* raised panel */
  --well:    #0C1116;   /* sunken input */
  --rule:    #232C36;   /* hairlines */
  --mist:    #E8EDF2;   /* primary text */
  --dim:     #8A96A4;   /* secondary text */
  --arc:     #5FD4FF;   /* charge blue — progress only */
  --signal:  #FFB000;   /* instrument amber — actions only */
  --warn:    #FF7B6B;

  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Inter Tight', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ink);
  color: var(--mist);
  font: 400 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: fixed;
  inset: auto auto -320px -280px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(95, 212, 255, .10), rgba(95, 212, 255, 0) 62%);
  pointer-events: none;
  z-index: 0;
}

.shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1160px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 34px 28px 30px;
}

/* ── top bar ───────────────────────────────────────────────────────────── */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  width: 205px;
  height: auto;
  display: block;
}

.status {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 500 10px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}

.status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--arc);
  box-shadow: 0 0 0 0 rgba(95, 212, 255, .45);
  animation: ping 2.6s ease-out infinite;
}

@keyframes ping {
  0%        { box-shadow: 0 0 0 0 rgba(95, 212, 255, .45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(95, 212, 255, 0); }
}

/* ── layout ────────────────────────────────────────────────────────────── */

.grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 52px;
}

@media (min-width: 940px) {
  .grid { grid-template-columns: 1.04fr .96fr; gap: 72px; }
  .shell { padding: 40px 40px 34px; }
}

/* ── intro column ──────────────────────────────────────────────────────── */

.eyebrow {
  margin: 0 0 22px;
  font: 400 10px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
}

.headline {
  margin: 0;
  font-family: var(--display);
  font-weight: 200;
  font-stretch: 118%;
  font-size: clamp(3rem, 8.4vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.012em;
}

.headline em {
  font-style: normal;
  font-weight: 500;
  color: var(--arc);
}

.lede {
  max-width: 34rem;
  margin: 26px 0 0;
  color: var(--dim);
  font-size: 1.0625rem;
}

/* ── charge meter (the signature) ──────────────────────────────────────── */

.meter { margin: 40px 0 0; max-width: 34rem; }

.meter .track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px var(--rule);
  overflow: visible;
}

/* battery segmentation, cut through both filled and empty portions */
.meter .track::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 13px,
    var(--ink) 13px 16px
  );
  pointer-events: none;
  z-index: 1;
}

.meter .fill {
  position: relative;
  height: 100%;
  width: var(--fill);
  border-radius: 999px;
  background: linear-gradient(90deg, #1E7FA8, var(--arc));
  box-shadow: 0 0 22px rgba(95, 212, 255, .38);
  animation: charge 1.9s cubic-bezier(.2, .75, .25, 1) both;
}

@keyframes charge {
  from { width: 0; }
  to   { width: var(--fill); }
}

.meter .bolt {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 11px;
  height: 19px;
  transform: translateY(-50%);
  z-index: 2;
  fill: var(--signal);
  filter: drop-shadow(0 0 7px rgba(255, 176, 0, .65));
  animation: flicker 3.4s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  46%      { opacity: .55; }
  52%      { opacity: 1; }
}

.readout {
  display: flex;
  justify-content: space-between;
  margin: 13px 0 0;
  font: 400 10px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}

.readout .pct { color: var(--arc); }

.tagline {
  margin: 40px 0 0;
  font-family: var(--display);
  font-weight: 300;
  font-stretch: 118%;
  font-size: 1rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ── enquiry panel ─────────────────────────────────────────────────────── */

.panel {
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 140px),
    var(--carbon);
}

.panel-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-stretch: 112%;
  font-size: 1.4rem;
  letter-spacing: -.005em;
}

.panel-sub {
  margin: 8px 0 26px;
  color: var(--dim);
  font-size: .9375rem;
}

.field { margin: 0 0 18px; }

.field label {
  display: block;
  margin: 0 0 8px;
  font: 400 10px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
}

.field .opt { color: #55606D; letter-spacing: .1em; }

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--well);
  color: var(--mist);
  font: 400 15px/1.5 var(--body);
  transition: border-color .15s, box-shadow .15s;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--arc);
  box-shadow: 0 0 0 3px rgba(95, 212, 255, .16);
}

.field.has-error input,
.field.has-error textarea { border-color: var(--warn); }

.hint {
  margin: 7px 0 0;
  color: var(--warn);
  font-size: .8125rem;
}

.alert {
  margin: 0 0 20px;
  padding: 11px 14px;
  border-left: 2px solid var(--warn);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 123, 107, .09);
  color: #FFC0B6;
  font-size: .875rem;
}

/* honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 6px 0 0;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--signal);
  color: #17120A;
  font: 500 15px/1 var(--body);
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}

.send svg { width: 10px; height: 17px; fill: currentColor; }

.send:hover  { background: #FFC233; box-shadow: 0 8px 24px rgba(255, 176, 0, .22); transform: translateY(-1px); }
.send:active { transform: translateY(0); box-shadow: none; }

.send:focus-visible,
a:focus-visible {
  outline: 2px solid var(--arc);
  outline-offset: 3px;
}

/* ── sent confirmation ─────────────────────────────────────────────────── */

.done { padding: 10px 0 6px; }

.done .tick {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--arc);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  animation: draw .7s .1s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes draw {
  from { stroke-dashoffset: 30; }
  to   { stroke-dashoffset: 0; }
}

.done h2 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-stretch: 112%;
  font-size: 1.4rem;
}

.done p {
  margin: 10px 0 0;
  max-width: 30rem;
  color: var(--dim);
  font-size: .9375rem;
}

.done .again {
  display: inline-block;
  margin: 22px 0 0;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rule);
  color: var(--mist);
  font: 400 10px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}

.done .again:hover { color: var(--arc); border-color: var(--arc); }

/* ── footer ────────────────────────────────────────────────────────────── */

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font: 400 11px/1.5 var(--mono);
  letter-spacing: .1em;
  color: var(--dim);
}

.footer .contacts { display: flex; flex-wrap: wrap; gap: 22px; }

.footer a {
  color: var(--dim);
  text-decoration: none;
  transition: color .15s;
}

.footer a:hover { color: var(--arc); }

/* ── smaller screens ───────────────────────────────────────────────────── */

@media (max-width: 620px) {
  .shell   { gap: 42px; padding: 26px 20px 24px; }
  .logo    { width: 168px; }
  .panel   { padding: 24px 20px; }
  .meter   { margin-top: 34px; }
  .tagline { font-size: .875rem; letter-spacing: .2em; }
  .footer  { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .meter .fill { width: var(--fill); }
}
