:root{
  --text: rgba(255,255,255,0.90);
  --muted: rgba(255,255,255,0.82);
  --muted2: rgba(255,255,255,0.62);

  --line2a: #7f8cff;
  --line2b: #a78bfa;

  --btnTop: #2c2f9b;
  --btnBot: #4a4cff;

  /* alignment line for all text */
  --contentIndent: 56px;

  /* bigger logo */
  --logoSize: 72px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: #050617;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background */
.bg{
  position: fixed;
  inset: 0;
  background: url("main.png") center/cover no-repeat;
  z-index: -2;
  filter: brightness(1.10) contrast(1.06) saturate(1.12);
}

/* Subtle overlay */
.overlay{
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 25% 35%, rgba(0,0,0,0.40), transparent 70%),
    linear-gradient(180deg, rgba(5,6,23,0.25), rgba(5,6,23,0.60));
}

/* Container */
.container{
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 70px);
  padding-right: 24px;
}

/* Header */
.header{
  padding-top: 56px;
}

/* Brand aligned with content line; logo outdented to the left */
.brand{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: var(--contentIndent);
}

.brand__logo{
  width: var(--logoSize);
  height: var(--logoSize);
  display: block;
  object-fit: contain;

  position: absolute;
  left: calc(var(--contentIndent) - var(--logoSize) - 14px);
  top: 50%;
  transform: translateY(-50%);
}

.brand__name{
  font-size: 42px; /* bigger brand name */
  font-weight: 650;
  letter-spacing: 0.1px;
  color: rgba(255,255,255,0.94);
}

/* Main / hero */
.main{
  padding-top: clamp(84px, 10vh, 120px);
}

.hero{
  max-width: 1100px;
  padding-left: var(--contentIndent);
}

/* Headline: lighter + much tighter line gap */
.hero__title{
  margin: 0 0 52px;
  font-size: clamp(44px, 3.6vw, 60px);
  line-height: 1.12;   /* šiek tiek daugiau oro */
  font-weight: 220;
  letter-spacing: -0.012em;
  color: rgba(255,255,255,0.85);
}

.hero__title .line1,
.hero__title .line2{
  display: block;
}

/* Bring second line very close */
.hero__title .line2{
  margin-top: -6px; /* strongest gap reduction */
  font-weight: 220;

  background: linear-gradient(90deg, var(--line2a), var(--line2b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text under headline – readable */
.hero__desc{
  margin: 0 0 36px;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.7;
  color: rgba(255,255,255,0.70);
}

/* CTA – big box, less rounded, bigger/bolder text */
.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 72px;
  padding: 0 38px;

  border-radius: 6px;
  text-decoration: none;

  font-size: 26px;
  font-weight: 850;
  letter-spacing: 0.2px;
  color: #fff;

  background: linear-gradient(180deg, #3a3cff, #2f32d6);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 35px rgba(60,70,255,0.35);

  margin-bottom: 18px;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 24px 70px rgba(0,0,0,0.50);
}

/* Text under button – smaller (18–20px range) */
.hero__meta{
  margin: 0;
  font-size: 20px; /* change to 18px if you want even smaller */
  line-height: 1.5;
  color: rgba(255,255,255,0.70);
}

/* Responsive */
@media (max-width: 900px){
  :root{
    --contentIndent: 40px;
    --logoSize: 56px;
  }

  .brand__name{ font-size: 30px; }
  .hero{ max-width: 100%; }
  .cta{ height: 64px; font-size: 20px; padding: 0 28px; }
  .hero__meta{ font-size: 18px; }

  .hero__title{ line-height: 0.95; }
  .hero__title .line2{ margin-top: -18px; }
}

@media (max-width: 520px){
  :root{
    --contentIndent: 0px;
    --logoSize: 48px;
  }

  .brand{ padding-left: 58px; }
  .brand__logo{ left: 0; }
  .brand__name{ font-size: 26px; }

  .hero{ padding-left: 0; }

  .hero__title{ line-height: 1.02; }
  .hero__title .line2{ margin-top: -12px; }

  .cta{ width: 100%; }
}