@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #030712;
  --panel: rgba(255,255,255,0.055);
  --panel-strong: rgba(255,255,255,0.09);
  --line: rgba(255,255,255,0.12);
  --text: #f8fbff;
  --muted: #96a4bd;
  --blue: #0787ff;
  --cyan: #00e5ff;
  --deep: #0b1228;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(7, 135, 255, 0.18), transparent 35rem),
    linear-gradient(180deg, #030712 0%, #050816 55%, #02040d 100%);
  color: var(--text);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.logo {
  font-weight: 900;
  letter-spacing: 0.15em;
  font-size: 14px;
}

.logo span {
  color: var(--cyan);
}

.nav nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav nav a:hover { color: var(--text); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 150px 22px 90px;
  overflow: hidden;
}

.hero-inner {
  width: min(1040px, 100%);
  text-align: center;
  position: relative;
  z-index: 2;
}

.pill, .eyebrow {
  display: inline-flex;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.06);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.hero-logo {
  width: min(420px, 88vw);
  margin: 24px auto 18px;
  display: block;
  border-radius: 28px;
  box-shadow: 0 30px 120px rgba(0, 153, 255, 0.16);
}

h1 {
  margin: 0 auto;
  max-width: 970px;
  font-size: clamp(52px, 8.8vw, 122px);
  line-height: 0.92;
  letter-spacing: -0.085em;
  font-weight: 900;
}

.hero-text {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.btn.primary {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  color: #031020;
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.18);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.25), transparent 65%);
  left: -120px;
  top: 20%;
}

.orb-two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(7, 135, 255, 0.24), transparent 65%);
  right: -180px;
  top: 10%;
}

.trusted {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--line);
}

.trusted span {
  padding: 26px;
  text-align: center;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 120px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section h2, .showcase h2, .final h2 {
  margin: 18px 0 0;
  max-width: 770px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards article {
  min-height: 310px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 18px;
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 30px;
}

.cards h3 {
  font-size: 25px;
  margin: 0 0 14px;
}

.cards p, .showcase p, .timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.showcase {
  width: min(1180px, calc(100% - 44px));
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 229, 255, 0.12), transparent 32rem),
    rgba(255,255,255,0.045);
}

.system-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #071022;
  padding: 18px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.38);
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 10px 8px 18px;
}

.panel-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.flow-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.flow-row.active {
  background: linear-gradient(90deg, rgba(7,135,255,0.18), rgba(0,229,255,0.11));
  border-color: rgba(0,229,255,0.26);
}

.flow-row em {
  color: var(--muted);
  font-style: normal;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
}

.timeline div {
  padding: 28px;
  background: rgba(255,255,255,0.045);
}

.timeline span {
  color: var(--cyan);
  font-weight: 900;
}

.timeline h3 {
  font-size: 24px;
  margin: 24px 0 12px;
}

.final {
  width: min(1020px, calc(100% - 44px));
  margin: 120px auto 80px;
  text-align: center;
  padding: 80px 26px;
  border-radius: 42px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(0,229,255,0.16), transparent 26rem),
    rgba(255,255,255,0.045);
}

.final h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0 38px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .nav nav { display: none; }
  .trusted, .cards, .timeline, .showcase { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .cards article { min-height: 230px; }
  footer { flex-direction: column; gap: 8px; }
}


.language-switcher {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}

.lang-btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.lang-btn.active {
  color: #031020;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

@media (max-width: 900px) {
  .language-switcher {
    order: 3;
  }
  .nav {
    gap: 10px;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 520px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
  }
  .nav {
    flex-wrap: wrap;
    border-radius: 28px;
  }
}


.about-section {
  width: min(1180px, calc(100% - 44px));
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.about-card, .about-stats, .contact-section {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,0.035));
  border-radius: 34px;
}

.about-card {
  padding: 38px;
}

.about-card h2 {
  margin: 18px 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-card p:not(.eyebrow) {
  color: var(--muted);
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
}

.about-stats {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.about-stats div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
}

.about-stats strong {
  display: block;
  color: var(--cyan);
  font-size: 42px;
  margin-bottom: 8px;
}

.about-stats span {
  color: var(--muted);
  font-weight: 700;
}

.detail-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-grid div, .portfolio-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  padding: 26px;
}

.detail-grid h3, .portfolio-grid h3 {
  font-size: 24px;
  margin: 0 0 16px;
}

.detail-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-grid li {
  color: var(--muted);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid span {
  display: inline-flex;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 24px;
}

.portfolio-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  width: min(1180px, calc(100% - 44px));
  margin: 120px auto 80px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-copy h2 {
  margin: 18px 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.contact-copy .btn {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(3, 7, 18, 0.72);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.08);
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

@media (max-width: 900px) {
  .about-section, .contact-section, .detail-grid, .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}


/* v1.3 clean language switcher */
.lang-btn {
  min-width: 46px;
  letter-spacing: 0.04em;
}

.language-switcher {
  background: rgba(255,255,255,0.055);
}

.lang-btn.active {
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.16);
}


/* Viorbyte v1.4 Expansion */
.v14-block {
  scroll-margin-top: 120px;
}

.about-section {
  width: min(1180px, calc(100% - 44px));
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.about-card, .about-stats, .contact-section {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,0.035));
  border-radius: 34px;
}

.about-card {
  padding: 38px;
}

.about-card h2 {
  margin: 18px 0;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-card p:not(.eyebrow) {
  color: var(--muted);
  max-width: 780px;
  font-size: 18px;
  line-height: 1.7;
}

.about-stats {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.about-stats div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
}

.about-stats strong {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  margin-bottom: 8px;
}

.about-stats span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.detail-grid, .portfolio-grid {
  display: grid;
  gap: 16px;
}

.detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card, .portfolio-grid article {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.detail-card:hover, .portfolio-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0,229,255,0.32);
  background: rgba(255,255,255,0.065);
}

.detail-card h3, .portfolio-grid h3 {
  font-size: 24px;
  margin: 0 0 16px;
}

.detail-card p, .portfolio-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.detail-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.portfolio-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid article > span {
  display: inline-flex;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.22);
  background: rgba(0, 229, 255, 0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 24px;
}

.contact-section {
  width: min(1180px, calc(100% - 44px));
  margin: 120px auto 80px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-copy h2 {
  margin: 18px 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(3, 7, 18, 0.72);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.08);
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0 44px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: start;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--text);
  display: block;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--cyan);
}

@media (max-width: 1100px) {
  .portfolio-grid, .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-section, .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .portfolio-grid, .detail-grid {
    grid-template-columns: 1fr;
  }
}

.service-hero {
  min-height: 74vh;
}

.service-page-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-page-grid ul {
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .service-page-grid {
    grid-template-columns: 1fr;
  }
}
