
:root {
  --bg: #090909;
  --surface: rgba(20, 18, 15, .72);
  --surface-strong: rgba(13, 12, 11, .92);
  --line: rgba(255, 187, 54, .18);
  --line-soft: rgba(255, 196, 87, .10);
  --text: #f6f1e8;
  --muted: #b7ae9f;
  --accent: #f3a61b;
  --accent-2: #ffd36b;
  --success: #79f2b4;
  --shadow: 0 30px 80px rgba(0, 0, 0, .52);
  --radius-xl: 30px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: currentColor; }
strong { font-weight: 700; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(243,166,27,.12), rgba(9,9,9,.96) 42%), #090909;
  transition: opacity .8s ease, visibility .8s ease;
}
.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.intro-logo-wrap {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 87, .26);
  background: linear-gradient(145deg, rgba(22,20,18,.96), rgba(9,9,9,.9));
  box-shadow: 0 0 0 14px rgba(255, 196, 87, .04), 0 20px 60px rgba(0,0,0,.55);
  animation: introPulse 1.8s ease-in-out infinite alternate;
}
.intro-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.intro-inner p {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .28em;
}
.intro-inner span {
  color: #b9a98f;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.intro-line {
  width: 180px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  margin-top: 12px;
}
.intro-line i {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(243,166,27,.08), #ffd36b, rgba(243,166,27,.08));
  animation: introLine 1.35s ease-in-out infinite;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, .94) 0%, rgba(9, 9, 9, .80) 40%, rgba(9, 9, 9, .36) 100%),
    url("assets/server-room.jpg") 72% center / cover no-repeat;
  transform: scale(1.025);
}
.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 26%, rgba(243,166,27,.12), transparent 30%),
    radial-gradient(circle at 74% 20%, rgba(255,211,107,.12), transparent 26%),
    linear-gradient(to bottom, transparent 45%, rgba(9,9,9,.88));
}
.page-bg::after {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  left: -10vw;
  top: 12vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,166,27,.10), rgba(243,166,27,0) 72%);
  filter: blur(24px);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
.mouse-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(243, 166, 27, .13), transparent 68%);
  filter: blur(10px);
}

.site-header,
.site-footer,
.hero {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 196, 87, .26);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 196, 87, .10), rgba(255, 255, 255, .03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 15px 35px rgba(0,0,0,.26);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 13px; letter-spacing: .17em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 11px; letter-spacing: .10em; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.text-link { color: #e5d4b5; font-size: 14px; transition: color .25s ease; }
.text-link:hover { color: #fff4db; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 17px; border-color: var(--line); background: rgba(255,255,255,.05); }
.button-primary {
  background: linear-gradient(135deg, #ffcc67, #f3a61b 50%, #bf7600);
  color: #19130a;
  box-shadow: 0 15px 40px rgba(243, 166, 27, .25);
}
.button-primary:hover { box-shadow: 0 20px 50px rgba(243, 166, 27, .34); }
.button-primary svg { font-size: 19px; }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.055); backdrop-filter: blur(14px); }
.button-ghost:hover, .button-small:hover { border-color: rgba(255,196,87,.34); background: rgba(255,255,255,.09); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 188px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 430px);
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
  padding: 54px 0 86px;
}
.cb-highlight {
  position: absolute;
  right: clamp(360px, 31vw, 480px);
  top: 106px;
  width: clamp(250px, 27vw, 390px);
  height: clamp(340px, 39vw, 500px);
  border-radius: 36px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 87, .16);
  background:
    linear-gradient(180deg, rgba(8,8,8,.12), rgba(8,8,8,.42)),
    url("assets/server-room.jpg") 87% center / 240% auto no-repeat;
  box-shadow: 0 24px 60px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.06);
  opacity: .92;
}
.cb-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 48% 44%, rgba(255,205,96,.10), transparent 45%);
}

.hero-content { max-width: 790px; position: relative; z-index: 2; }
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #eddcba;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(121,242,180,.09), 0 0 18px rgba(121,242,180,.8);
}

h1 {
  max-width: 850px;
  margin: 30px 0 24px;
  font-size: clamp(46px, 6.1vw, 92px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 780;
}
h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff2db 0%, #ffcf72 40%, #f2a217 82%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead {
  max-width: 730px;
  margin: 0;
  color: #d4c6ae;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.72;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.service-card {
  min-height: 154px;
  padding: 20px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(255,196,87,.24); background: rgba(255,255,255,.07); }
.service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #947c55;
  font-size: 11px;
  letter-spacing: .14em;
}
.service-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hero-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 87, .18);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(18, 16, 14, .72), rgba(10, 9, 8, .58));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.04), transparent 28%);
}
.panel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: #9f8a62;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: #f0e0c0; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); }

.panel-visual {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 196, 87, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 196, 87, .06) 1px, transparent 1px),
    radial-gradient(circle at 70% 26%, rgba(243,166,27,.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  background-size: 34px 34px, 34px 34px, auto, auto;
}
.orb { position: absolute; border-radius: 50%; filter: blur(3px); }
.orb-one { width: 200px; height: 200px; right: -64px; top: -66px; background: radial-gradient(circle at 30% 30%, rgba(255, 196, 87, .75), rgba(255, 196, 87, .03) 67%); }
.orb-two { width: 170px; height: 170px; left: -72px; bottom: -78px; background: radial-gradient(circle at 65% 30%, rgba(243,166,27,.55), rgba(243,166,27,.02) 68%); }
.arc-line {
  position: absolute;
  left: -40px;
  top: 26px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 87, .12);
  box-shadow: inset 0 0 0 1px rgba(255,196,87,.04);
}
.panel-logo-wrap {
  position: absolute;
  right: 34px;
  top: 30px;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  border: 1px solid rgba(255, 196, 87, .18);
  background: linear-gradient(145deg, rgba(12,12,12,.85), rgba(28,20,8,.75));
  box-shadow: 0 20px 45px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  animation: floatLogo 4.6s ease-in-out infinite;
}
.panel-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,211,107,.55), rgba(255,211,107,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.panel-logo-wrap img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(243,166,27,.08);
}
.panel-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 87, .14);
  background: rgba(8,8,8,.48);
  color: #f0dcc0;
  font-size: 12px;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
}
.panel-copy { padding: 28px 28px 20px; }
.panel-label { margin: 0 0 9px; color: var(--accent-2); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.panel-copy h2 { margin: 0 0 10px; font-size: 30px; letter-spacing: -.04em; }
.panel-copy > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.contact-list { padding: 0 18px 18px; }
.contact-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 10px 12px;
  border-top: 1px solid var(--line-soft);
  transition: background .25s ease, border-radius .25s ease, transform .25s ease;
}
.contact-item:hover { background: rgba(255,255,255,.055); border-radius: 14px; transform: translateX(2px); }
.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #ffca66;
}
.contact-icon svg { font-size: 18px; }
.contact-item span:nth-child(2) { min-width: 0; }
.contact-item small { display: block; margin-bottom: 4px; color: #94805a; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.contact-item strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; font-weight: 650; }
.contact-item b { color: #8d7755; font-size: 13px; }


.site-footer {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-soft);
  color: #8e826f;
  font-size: 12px;
}
.footer-note { display: inline-flex; align-items: center; gap: 9px; }
.footer-note span { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px rgba(121,242,180,.75); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal .88s cubic-bezier(.2,.8,.2,1) forwards;
}
.reveal-1 { animation-delay: .15s; }
.reveal-2 { animation-delay: .28s; }
.reveal-3 { animation-delay: .42s; }
.reveal-4 { animation-delay: .56s; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes introLine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}
@keyframes introPulse {
  from { transform: scale(1); box-shadow: 0 0 0 14px rgba(255,196,87,.04), 0 20px 60px rgba(0,0,0,.55); }
  to { transform: scale(1.04); box-shadow: 0 0 0 22px rgba(255,196,87,.02), 0 20px 60px rgba(0,0,0,.55); }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; max-width: 920px; }
  .hero-content { max-width: none; }
  .hero-panel { width: min(100%, 680px); }
  .cb-highlight { display: none; }
  h1 { max-width: 920px; }
}
@media (max-width: 820px) {
  .service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header, .site-footer, .hero { width: min(100% - 32px, 620px); }
  .site-header { min-height: 86px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 11px; letter-spacing: .14em; }
  .brand-copy small { font-size: 10px; }
  .text-link { display: none; }
  .button-small { min-height: 39px; padding-inline: 14px; }
  .hero { min-height: auto; padding: 42px 0 62px; gap: 44px; }
  .cb-highlight { display: none; }
  h1 { margin-top: 25px; font-size: clamp(42px, 13vw, 66px); line-height: 1.01; }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .service-grid { margin-top: 36px; }
  .service-card { min-height: auto; }
  .panel-visual { min-height: 220px; }
  .panel-logo-wrap { width: 104px; height: 104px; right: 18px; top: 24px; }
  .panel-logo-wrap img { width: 74px; height: 74px; }
  .panel-badge { left: 18px; right: 18px; bottom: 18px; font-size: 11px; justify-content: center; text-align: center; }
  .panel-copy { padding: 24px 22px 18px; }
  .panel-copy h2 { font-size: 26px; }
  .contact-list { padding-inline: 10px; }
  .contact-item { grid-template-columns: 40px minmax(0, 1fr) auto; }
  .contact-item strong { font-size: 12px; }
  .site-footer { min-height: 110px; flex-direction: column; justify-content: center; text-align: center; gap: 8px; }
  .mouse-glow { display: none; }
  .intro-logo-wrap { width: 96px; height: 96px; }
  .intro-inner p { font-size: 15px; letter-spacing: .22em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
.title-line {
  display: block;
  white-space: nowrap;
}

h1 {
  font-size: clamp(54px, 4.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: clamp(48px, 7vw, 68px);
  }
}

/* Telefon */
@media (max-width: 720px) {
  h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .title-line {
    white-space: normal;
  }
}
