/* ittv.de — Domain-Landingpage */

@font-face {
  font-family: 'Panchang';
  src: url('assets/fonts/panchang-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Panchang';
  src: url('assets/fonts/panchang-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('assets/fonts/general-sans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('assets/fonts/general-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('assets/fonts/general-sans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --bg: #0a0d12;
  --surface: #10151d;
  --surface-2: #141a24;
  --border: #232c3a;
  --text: #e9ecf1;
  --muted: #9aa4b4;
  --accent: #5ee6d0;
  --accent-dim: rgba(94, 230, 208, 0.12);
  --accent-ink: #062b26;
  --display: 'Panchang', 'Trebuchet MS', sans-serif;
  --body: 'General Sans', 'Segoe UI', Arial, sans-serif;
  --wrap: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Header */
.top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.top__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--accent); }
.brand__mark { width: 30px; height: 30px; }
.brand__name {
  font-family: var(--display); font-weight: 700; font-size: 19px;
  color: var(--text); letter-spacing: 0.01em;
}
.brand__tld { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #7cefdc; transform: translateY(-1px); }
.btn--ghost {
  border: 1px solid var(--border); color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--big { font-size: 19px; padding: 16px 34px; }

/* Hero */
.hero {
  padding: 108px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% -5%, rgba(94, 230, 208, 0.14), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.012) 3px 4px);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(16, 21, 29, 0.7);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(64px, 13vw, 148px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 26px 0 22px;
}
.hero__tld { color: var(--accent); }

.hero__sub {
  max-width: 560px; margin: 0 auto;
  font-size: 19px; color: var(--muted);
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin: 36px 0 40px;
}

.chips {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  list-style: none;
}
.chips li {
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 15px;
  background: var(--surface);
}

/* Sections */
.section { padding: 84px 0; }
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}

/* Grids & cards */
.grid { display: grid; gap: 18px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--muted); }

/* Offer */
.section--offer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.offer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}
.offer__tag {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 999px;
  padding: 5px 13px;
}
.offer h3 { font-family: var(--display); font-weight: 600; font-size: 26px; }
.offer > p { color: var(--muted); }
.offer ul { list-style: none; display: grid; gap: 9px; margin: 4px 0 10px; }
.offer ul li {
  padding-left: 26px; position: relative;
  font-size: 15.5px; color: var(--text);
}
.offer ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}
.offer .btn { margin-top: auto; }

/* Uses */
.uses {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.uses li {
  font-size: 15.5px; font-weight: 500;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 13px 22px;
}

/* Contact */
.section--contact { padding-bottom: 100px; }
.contact { text-align: center; }
.contact .section__title { margin-bottom: 16px; }
.contact__text { max-width: 520px; margin: 0 auto 30px; color: var(--muted); }
.contact__note { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* Rechtliches */
.section--legal { padding-top: 0; }
.section--legal .section__title { font-size: 22px; margin-bottom: 22px; }
.legal__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
}
.legal__item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
}
.legal__item summary::-webkit-details-marker { display: none; }
.legal__item summary::after {
  content: '+';
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px; font-weight: 500;
}
.legal__item[open] summary::after { content: '\2013'; }
.legal__body {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
}
.legal__body h3 {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin: 16px 0 6px;
}
.legal__body a { color: var(--accent); }
.legal__stand { margin-top: 16px; font-size: 13.5px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  text-align: center;
}
.footer p { font-size: 13.5px; color: var(--muted); }
.footer__links { margin-top: 6px; }
.footer__links a { color: var(--accent); text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .hero { padding: 76px 0 64px; }
  .section { padding: 60px 0; }
  body { font-size: 16px; }
}

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