/* Vesilo Website: dunkler Leuchtkasten, Tiefsee-Verlauf, Wasser-Türkis */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --canvas: #0E1116;
  --deep-1: #08171D;
  --deep-2: #0B2B33;
  --deep-3: #10525C;
  --accent: #3EC6C9;
  --text: #F2F6F7;
  --muted: rgba(242, 246, 247, 0.62);
  --card: rgba(255, 255, 255, 0.05);
  --edge: rgba(255, 255, 255, 0.11);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  background: var(--canvas);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.shell { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Kopfzeile */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.brand span { font-size: 20px; font-weight: 700; letter-spacing: -0.3px; }
.lang { display: flex; gap: 6px; }
.lang a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; border: 1px solid transparent;
}
.lang a.on { color: var(--canvas); background: var(--accent); }
.lang a:not(.on):hover { border-color: var(--edge); color: var(--text); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--deep-1) 0%, var(--deep-2) 55%, var(--deep-3) 130%);
  border-radius: 28px;
  padding: 64px 40px 0;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--edge);
}
.hero .copy { padding-bottom: 64px; }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.08;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p.lead { font-size: 19px; color: var(--muted); margin-top: 18px; max-width: 46ch; }
.hero .cta { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: #0B0E12;
  font-weight: 700; font-size: 16px;
  padding: 13px 22px; border-radius: 14px; text-decoration: none;
}
.badge svg { width: 20px; height: 20px; }
.badge.soon { background: var(--card); color: var(--muted); border: 1px solid var(--edge); cursor: default; }
.cta .note { font-size: 14px; color: var(--muted); }
.hero .phone { display: flex; justify-content: center; }
.hero .phone img {
  width: min(300px, 100%); height: auto; display: block;
  border-radius: 34px 34px 0 0;
  border: 1px solid var(--edge); border-bottom: none;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* Sektionen */
section { padding: 72px 0 0; }
h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -0.8px; }
.kicker { color: var(--accent); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.feature {
  background: var(--card); border: 1px solid var(--edge);
  border-radius: 20px; padding: 24px;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature h3 span { color: var(--accent); margin-right: 8px; }
.feature p { font-size: 15px; color: var(--muted); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.gallery img {
  width: 100%; height: auto; display: block; border-radius: 26px;
  border: 1px solid var(--edge);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Preis */
.price {
  background: linear-gradient(180deg, var(--deep-2), var(--deep-1));
  border: 1px solid var(--edge); border-radius: 28px;
  margin-top: 72px; padding: 56px 40px; text-align: center;
}
.price h2 em { color: var(--accent); font-style: normal; }
.price p { color: var(--muted); margin-top: 14px; font-size: 17px; }
.price .chip {
  display: inline-block; margin-top: 26px;
  background: var(--accent); color: var(--canvas);
  font-weight: 700; font-size: 15px; padding: 12px 26px; border-radius: 999px;
}

/* Support */
.support { text-align: center; padding-bottom: 8px; }
.support p { color: var(--muted); margin-top: 12px; }
.support a { color: var(--accent); text-decoration: none; font-weight: 600; }
.support a:hover { text-decoration: underline; }

/* Fußzeile */
footer {
  margin-top: 72px; padding: 28px 0 44px;
  border-top: 1px solid var(--edge);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
footer nav { display: flex; gap: 20px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* Rechtsseiten */
.legal { max-width: 720px; margin: 0 auto; padding: 24px 24px 80px; }
.legal h1 { font-size: 32px; letter-spacing: -0.8px; margin: 40px 0 8px; }
.legal h2 { font-size: 20px; margin: 36px 0 8px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal ul { padding-left: 22px; margin-top: 8px; }
.legal .back { display: inline-block; margin-top: 28px; color: var(--accent); text-decoration: none; font-weight: 600; }

/* Mobil */
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 44px 24px 0; }
  .hero .copy { padding-bottom: 0; }
  .hero .phone { margin-top: 36px; }
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
