/* ===========================================================
   Tryggt IT — "Snart här"-sida
   Fristående stilark, delar palett/typsnitt med huvudsajten
   (se css/style.css) men håller sina egna komponenter isolerade.
   =========================================================== */

:root {
  --navy-deep: #0B1D30;
  --navy-deep-2: #0B1F3A;
  --navy-light-2: #1C3B5C;
  --tech-blue-light: #4FA8E0;
  --cyan: #5CE3D8;
  --signal-green: #3DDC84;
  --off-white: #F3FAF9;
  --muted-light: #8FAAC0;

  --gradient-accent: linear-gradient(135deg, var(--tech-blue-light), var(--signal-green));
  --font-head: "Space Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

body {
  font-family: var(--font-body);
  color: var(--off-white);
  background: radial-gradient(120% 140% at 50% 0%, #12335a 0%, var(--navy-deep-2) 45%, var(--navy-deep) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(92, 227, 216, 0.32) 1.4px, transparent 1.4px),
    radial-gradient(circle at 1px 1px, rgba(79, 168, 224, 0.2) 1.4px, transparent 1.4px);
  background-size: 46px 46px, 110px 110px;
  background-position: 0 0, 30px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mark {
  width: 56px;
  height: auto;
  margin-bottom: 28px;
}

.card {
  width: 100%;
  max-width: 640px;
  background: linear-gradient(160deg, var(--navy-light-2), var(--navy-deep-2));
  border: 1px solid rgba(92, 227, 216, 0.16);
  border-radius: 26px;
  padding: 52px 48px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55), 0 0 44px -12px rgba(92, 227, 216, 0.22);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(92, 227, 216, 0.08);
  border: 1px solid rgba(92, 227, 216, 0.3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-green);
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.15;
  margin: 22px 0 0;
}

h1 .grad {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 20px auto 0;
  max-width: 460px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted-light);
}

.panel {
  margin-top: 36px;
  height: 130px;
  border-radius: 16px;
  border: 1px solid rgba(243, 250, 249, 0.1);
  background: rgba(11, 31, 58, 0.5);
  position: relative;
  overflow: hidden;
}

.panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(79, 168, 224, 0.08);
  border: 1px solid rgba(79, 168, 224, 0.28);
  font-size: 14px;
  color: var(--off-white);
}
.status strong {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-line {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted-light);
}
.contact-line a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(92, 227, 216, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.contact-line a:hover { color: var(--off-white); }

.foot {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted-light);
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .card { padding: 40px 28px; border-radius: 20px; }
  .panel { height: 100px; }
}
