:root {
      --bg: #0D1117;
      --bg-soft: #161B22;
      --accent: #58A6FF;
      --text: #C9D1D9;
      --text-strong: #F0F6FC;
      --border-soft: #21262D;
      --radius: 12px;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 32px 16px 48px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background: conic-gradient(from 180deg, #58A6FF, #22C55E, #FACC15, #F97316, #EF4444, #58A6FF);
      padding: 2px;
    }

    .logo-inner {
      width: 100%;
      height: 100%;
      border-radius: inherit;
      background: #0D1117;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-weight: 700;
      font-size: 14px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text span:first-child {
      font-weight: 600;
      color: var(--text-strong);
      letter-spacing: 0.03em;
      font-size: 14px;
    }

    .logo-text span:last-child {
      font-size: 12px;
      color: #8B949E;
    }

    nav {
      display: flex;
      gap: 18px;
      font-size: 16px;
    }

    nav a {
      color: #8B949E;
      position: relative;
      padding-bottom: 4px;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.18s ease-out;
    }

    nav a:hover {
      color: var(--text-strong);
    }

    nav a:hover::after {
      width: 100%;
    }

    /* HERO */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	  
      gap: 32px;
      align-items: center;
      margin-bottom: 40px;
    }
	.download {
      display: grid;
      
	  grid-template-columns: minmax(0, 1fr);
      gap: 32px;
      align-items: center;
      margin-bottom: 40px;
    }

    @media (max-width: 840px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .hero-clock {
      background: radial-gradient(circle at top, #1F2937 0, #020617 55%);
      border-radius: 24px;
      padding: 24px;
	  text-align: center;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }
	.hero-clock img {
	display: block;
  margin: auto;
        width: 260px;
        margin-bottom: 20px;
        filter: drop-shadow(0 0 18px rgba(30,58,95,0.7));
        animation: glowPulse 3s infinite ease-in-out;
    }

    .hero-clock::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 0 0, rgba(88, 166, 255, 0.18), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.18), transparent 55%);
      opacity: 0.9;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .clock-face {
      position: relative;
      width: 260px;
      height: 260px;
      margin: 0 auto;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #111827 0, #020617 55%, #000 100%);
      border: 1px solid #374151;
      box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.9),
        0 24px 60px rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .clock-center {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(88, 166, 255, 0.35);
      position: absolute;
    }

    .clock-hand {
      position: absolute;
      transform-origin: bottom center;
      bottom: 50%;
      left: 50%;
    }

    .hand-hour {
      width: 4px;
      height: 60px;
      background: #E5E7EB;
      border-radius: 999px;
      transform: translateX(-50%);
    }

    .hand-minute {
      width: 3px;
      height: 90px;
      background: #9CA3AF;
      border-radius: 999px;
      transform: translateX(-50%);
    }

    .hand-second {
      width: 2px;
      height: 110px;
      background: #F97316;
      border-radius: 999px;
      transform: translateX(-50%);
    }

    .clock-digital {
      margin-top: 18px;
      text-align: center;
      font-feature-settings: "tnum" 1, "lnum" 1;
    }

    .clock-digital-time {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--text-strong);
    }

    .clock-digital-date {
      font-size: 13px;
      color: #9CA3AF;
      margin-top: 4px;
    }

    .hero-meta {
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 12px;
      color: #9CA3AF;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #22C55E;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    }

    .hero-content h1 {
      font-size: 32px;
      line-height: 1.2;
      color: var(--text-strong);
      margin-bottom: 12px;
    }

    .hero-content p {
      font-size: 15px;
      color: #9CA3AF;
      margin-bottom: 20px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .badge {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: rgba(15, 23, 42, 0.85);
      color: #9CA3AF;
    }

    .badge-strong {
      border-color: rgba(88, 166, 255, 0.6);
      color: var(--accent);
      background: rgba(15, 23, 42, 0.95);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
    }

    .btn-primary {
      background: linear-gradient(135deg, #58A6FF, #3B82F6);
      color: #0B1120;
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.55);
    }

    .btn-secondary {
      background: rgba(15, 23, 42, 0.9);
      border-color: var(--border-soft);
      color: #E5E7EB;
    }

    .btn-secondary:hover {
      border-color: rgba(88, 166, 255, 0.7);
      background: rgba(15, 23, 42, 0.95);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.65);
    }

    /* GRID ZEGARÓW */

    .section {
      margin-bottom: 40px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 18px;
      gap: 12px;
    }

    .section-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-strong);
    }

    .section-subtitle {
      font-size: 13px;
      color: #9CA3AF;
    }

    .clocks-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
	.clocks-grida {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 960px) {
      .clocks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .clocks-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .clock-card {
      background: var(--bg-soft);
      border-radius: var(--radius);
      border: 1px solid var(--border-soft);
      padding: 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      overflow: hidden;
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, border-color 0.12s ease-out, background 0.12s ease-out;
    }

    .clock-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.65);
      border-color: rgba(88, 166, 255, 0.5);
      background: #111827;
    }

    .clock-thumb {
      height: 120px;
      border-radius: 10px;
      background: radial-gradient(circle at top, #1F2937 0, #020617 55%);
      border: 1px solid #374151;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9CA3AF;
      font-size: 12px;
    }
	.clock-thumb-gal {
      height: 280px;
      border-radius: 10px;
      background: radial-gradient(circle at top, #1F2937 0, #020617 55%);
      border: 1px solid #374151;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9CA3AF;
      font-size: 12px;
    }
.clock-voice {
      height: 180px;
	  
      border-radius: 10px;
      background: radial-gradient(circle at top, #1F2937 0, #020617 55%);
      border: 1px solid #374151;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9CA3AF;
      font-size: 12px;
    }
    .clock-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-strong);
    }

    .clock-desc {
      font-size: 12px;
      color: #9CA3AF;
    }

    .clock-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 11px;
      color: #9CA3AF;
    }

    .clock-tag {
      padding: 2px 8px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: rgba(15, 23, 42, 0.9);
    }

    .clock-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 6px;
      font-size: 11px;
      color: #6B7280;
    }

    .clock-download {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(88, 166, 255, 0.7);
      color: var(--accent);
      background: rgba(15, 23, 42, 0.95);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.12s ease-out, transform 0.12s ease-out, box-shadow 0.12s ease-out;
    }

    .clock-download:hover {
      background: rgba(37, 99, 235, 0.18);
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
    }

    /* FUNKCJE */

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 840px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .feature-card {
      background: var(--bg-soft);
      border-radius: var(--radius);
      border: 1px solid var(--border-soft);
      padding: 14px;
      font-size: 13px;
      color: #9CA3AF;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .feature-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-strong);
    }

    /* FAQ */

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: var(--bg-soft);
      border-radius: var(--radius);
      border: 1px solid var(--border-soft);
      overflow: hidden;
    }

    .faq-header {
      padding: 10px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 13px;
      color: var(--text-strong);
    }

    .faq-header span {
      font-weight: 500;
    }

    .faq-toggle {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #9CA3AF;
    }

    .faq-body {
      padding: 0 14px 10px;
      font-size: 13px;
      color: #9CA3AF;
      display: none;
    }

    .faq-item.open .faq-body {
      display: block;
    }

    /* STOPKA */

    footer {
      border-top: 1px solid #111827;
      padding-top: 18px;
      font-size: 12px;
      color: #6B7280;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #9CA3AF;
      font-size: 12px;
    }

    .footer-links a:hover {
      color: var(--accent);
    }