/*
Theme Name: WattBalans Coming Soon
Theme URI: https://wattbalans.nl
Author: WattBalans
Description: Een compacte Nederlandstalige coming-soon website voor WattBalans.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: wattbalans
*/

:root {
  --navy: #062b55;
  --blue: #007fa7;
  --green: #56b51f;
  --teal: #00a88f;
  --text: #123047;
  --muted: #637285;
  --bg: #f5faf8;
  --card: rgba(255,255,255,.84);
  --border: rgba(8, 50, 85, .12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(86,181,31,.20), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(0,168,143,.18), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
}

.wb-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 18px;
}

.wb-card {
  width: min(980px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(6, 43, 85, .14);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.wb-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 560px;
}

.wb-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 34px;
  background:
    linear-gradient(145deg, rgba(6,43,85,.96), rgba(0,127,167,.86)),
    radial-gradient(circle at 80% 20%, rgba(86,181,31,.35), transparent 18rem);
}

.wb-icon-wrap {
  width: min(330px, 84%);
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.wb-icon {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.18));
}

.wb-content {
  padding: 54px 54px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wb-logo {
  width: min(420px, 100%);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.wb-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  background: rgba(86,181,31,.13);
  border: 1px solid rgba(86,181,31,.25);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.wb-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(86,181,31,.16);
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  color: var(--navy);
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.wb-lead {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 28px;
}

.wb-features {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.wb-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 16px;
}

.wb-check {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 900;
}

.wb-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.wb-footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.wb-footer a:hover {
  text-decoration: underline;
}

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

  .wb-visual {
    min-height: 280px;
  }

  .wb-icon-wrap {
    width: min(240px, 72%);
    border-radius: 32px;
  }

  .wb-content {
    padding: 38px 28px 34px;
  }

  .wb-logo {
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .wb-page {
    padding: 18px 12px;
  }

  .wb-card {
    border-radius: 22px;
  }

  .wb-content {
    padding: 30px 20px;
  }

  .wb-visual {
    padding: 32px 18px;
  }
}
