/* Gdzie zaglądasz? */

:root{
    --bg:#0b0b0b;
    --panel:#111111;
    --muted:#afb6bd;
    --accent:#1883fd; /* niebieski */
    --white:#ffffff;
    --ig:#ee5997;
    --radius:14px;
    --max-width:1100px;
    --gap:24px;
    font-family: "Segoe UI", Arial, sans-serif;
  }

  html,body{
    height:100%;
  }
  
h5 {
  margin-bottom: 3px;
}

p{
margin-top: 0;      
margin-bottom: 12px; 
}

a{
  color:#cba1ff;
  text-decoration: none;
  cursor: pointer;
}

  body{
    margin:0;
    background:var(--bg);
    color:var(--white);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.45;
  }

  /* wrapper */
  .site{
    max-width:var(--max-width);
    margin:28px auto;
    padding:0 18px;
  }

  /* header */
  header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:1px 0;
  }

  .brand{
    display:flex;
    gap:12px;
    align-items:center;
  }

  .brand-logo{
    width:44px;height:44px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:4px;
  }

  .brand-logo .sq{
    width:100%;
    height:100%;
    border-radius:3px;
  }

  .sq.blue{
    background:var(--accent);
  }

  .sq.dark{
    background:var(--white);
    border:2px var(--bg);
  }

  .brand h1{
    font-size:18px;
    margin:0;
    font-weight:700;
    letter-spacing:0.6px;
    color:var(--white);
  }

  nav ul{
    display:flex;
    gap:20px;
    margin:0;
    padding:0;
    list-style:none;
  }

  nav a{
    color:rgba(255,255,255,0.85);
    text-decoration:none;
    font-weight:550;
  }
  
  nav a:hover{
    color:var(--accent);
  }

  /* hero */
  .hero{
    display:grid;
    grid-template-columns: 1fr 420px;
    gap:32px;
    align-items:center;
    margin-top:22px;
    min-height:420px;
  }

  .hero-left{
    padding:0px;
  }

  .hero-title{
    font-size:40px;
    margin:0 0 18px 0;
    line-height:1.02;
    font-weight:800;
    letter-spacing:-0.6px;
  }

  .hero-desc{
    color:var(--muted);
    max-width:56ch;
    margin-bottom:22px;}

  .button{
    display:inline-block;
    background:var(--accent);
    color:var(--white);
    padding:12px 20px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    box-shadow: 0 6px 18px rgba(30,136,255,0.12);
  }

  /* pisane index.html */
 .typing {
    border-right: 2px solid rgb(255, 255, 255);
    padding-right: 4px;
    white-space: nowrap;
    animation: blink 1s step-end infinite;
  }

  @keyframes blink {
    50% { border-color: transparent; }
  }

  /* subtle background circuit lines in hero */
  .hero-graphic{
    position:relative;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

  .network-photo{
  width: auto;
  max-width: 100%;
  height: auto;
  align-self: flex-start;
  }

  /* services */
  .services{
    margin-top:34px;
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:18px;
    align-items:start;
  }

/* card-services.html */
  .card-services{
    background:var(--panel);
    border-radius:12px;
    padding:22px;
    color:var(--white);
    height:235px;
  }

  .card-services h3{
    margin:6px 0 10px 0;
    font-size:20px;
  }

  .card-services p{
    margin:0
    ;color:var(--muted);
    font-size:14px;
  }

/* card ikonki */
  .icon{
    width:56px;
    height:56px;
    border-radius:10px;
    display:inline-grid;
    place-items:center;
    margin-bottom:12px;
  }

  .icon svg{
    width:34px;
    height:34px;
    display:block;
  }

  .about-strip{
    margin-top:30px;
    background:var(--panel);
    border-radius:12px;
    padding:22px;
    display:flex;
    gap:18px;
    align-items:center;
    justify-content:space-between;
  }


  .contact-left h4{
    margin:0 0 6px 0;
  }

  .contact-left p{
    margin:0;
    color:var(--muted);
  }

  .contact-actions a{
    display:inline-block;
    margin-left:12px;
    padding:10px 14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
  }

 /* contact strip */
  .contact-strip{
    margin-top:30px;
    background:var(--panel);
    border-radius:12px;padding:22px;display:flex;gap:18px;align-items:center;justify-content:space-between;
  }
  .mail{
    background:var(--accent);
    color:var(--white);}

  .instagram{
    background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
    );
    color:var(--white);
  }

/* Stopa */
  footer{
    margin-top:20px;
    padding:18px;
    color:var(--muted);
    font-size:13px;
    text-align:center;
  }

  /* responsiveness */
  @media (max-width:980px){
    .hero{grid-template-columns:1fr;min-height:520px;}
    .hero-graphic{order:-1;height:260px;margin-bottom:18px;}
    .hero-left .hero-title{font-size:40px;}
    .services{grid-template-columns:1fr;gap:12px;}
  }

  @media (max-width:420px){
    .hero-left .hero-title{font-size:30px;}
    .brand h1{font-size:16px;}
  }