@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Orbitron:wght@700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #121820;
  --panel: #020814;
  --panel-2: #071321;
  --tile: rgba(23, 35, 50, 0.82);
  --line: rgba(116, 153, 202, 0.18);
  --text: #f7fbff;
  --muted: #b9c8da;
  --blue: #0088ff;
  --cyan: #39c4ff;
  --green: #37d86a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --font-ui: "Chakra Petch", "Prompt", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-brand: "Orbitron", "Chakra Petch", "Segoe UI", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: radial-gradient(circle at 55% 0%, #1d2834 0, #10161d 38%, #090c11 100%);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(0, 136, 255, 0.08), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(57, 196, 255, 0.16), transparent 24%),
    var(--bg);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
  font: inherit;
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 18px 14px 34px;
}

.phone-card {
  width: min(100%, 480px);
  overflow: hidden;
  border: 1px solid rgba(111, 151, 205, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(2, 8, 20, 0.96), rgba(2, 12, 23, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px 24px 0;
}

.brand,
.footer-brand {
  display: inline-grid;
  line-height: 0.85;
}

.brand-main {
  font-family: var(--font-brand);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-sub {
  margin-top: 6px;
  margin-left: 10px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(190, 214, 255, 0.22);
  border-radius: 999px;
  background: rgba(21, 31, 48, 0.65);
  backdrop-filter: blur(12px);
}

.language-switch::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 38px;
  height: 32px;
  content: "";
  border-radius: 18px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(0, 136, 255, 0.7);
  transition: translate 180ms ease;
}

.language-switch[data-active-lang="en"]::after {
  translate: 43px 0;
}

.language-switch span {
  width: 1px;
  height: 22px;
  background: rgba(190, 214, 255, 0.18);
}

.lang-btn {
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: #8fa8c8;
  font-weight: 700;
}

.lang-btn.is-active {
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 28px 24px 10px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(to bottom, transparent 58%, var(--panel) 100%),
    radial-gradient(circle at 55% 38%, rgba(0, 136, 255, 0.32), transparent 25%),
    linear-gradient(to top, rgba(0, 16, 35, 0.95), rgba(0, 10, 22, 0.18) 55%, rgba(0, 8, 18, 0.4)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(57, 196, 255, 0.08) 19px 20px),
    linear-gradient(135deg, rgba(0, 136, 255, 0.18), transparent 42%);
  opacity: 0.9;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 58px;
  left: 0;
  z-index: -1;
  height: 138px;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 72%),
    linear-gradient(90deg, transparent 0 8%, rgba(0, 136, 255, 0.28) 8% 10%, transparent 10% 18%, rgba(57, 196, 255, 0.24) 18% 20%, transparent 20% 31%, rgba(0, 136, 255, 0.22) 31% 33%, transparent 33% 49%, rgba(57, 196, 255, 0.2) 49% 51%, transparent 51% 69%, rgba(0, 136, 255, 0.26) 69% 71%, transparent 71%),
    linear-gradient(to top, rgba(0, 18, 42, 0.84), rgba(0, 18, 42, 0.2));
  clip-path: polygon(0 56%, 8% 42%, 8% 26%, 19% 26%, 19% 66%, 26% 66%, 26% 38%, 37% 38%, 37% 18%, 48% 18%, 48% 62%, 55% 62%, 55% 31%, 69% 31%, 69% 9%, 82% 9%, 82% 50%, 91% 50%, 91% 24%, 100% 24%, 100% 100%, 0 100%);
  opacity: 0.58;
}

.orbit {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: -1;
  width: min(86vw, 390px);
  aspect-ratio: 1;
  translate: -50% 0;
  border: 1px solid rgba(0, 136, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 52%, rgba(0, 136, 255, 0.22) 53%, transparent 55%),
    conic-gradient(from 30deg, transparent 0 12%, rgba(57, 196, 255, 0.78), transparent 22% 48%, rgba(0, 136, 255, 0.55), transparent 58%);
  opacity: 0.8;
  filter: drop-shadow(0 0 22px rgba(0, 136, 255, 0.48));
}

.profile-photo {
  width: 205px;
  height: 205px;
  display: block;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 7px solid var(--blue);
  border-radius: 50%;
  background: #dce8f4;
  box-shadow: 0 0 0 4px rgba(0, 136, 255, 0.18), 0 18px 50px rgba(0, 0, 0, 0.36);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(38px, 10vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.role {
  margin: 12px 0 22px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
}

.company {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.tagline {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.divider {
  width: 82%;
  height: 1px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, transparent, rgba(164, 201, 255, 0.32), transparent);
}

.divider::after {
  width: 78px;
  height: 2px;
  display: block;
  margin: 0 auto;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}

.intro {
  margin: 0;
  color: #f7fbff;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.quick-actions {
  display: grid;
  gap: 12px;
  padding: 16px 22px 28px;
}

.action {
  cursor: pointer;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(120, 161, 211, 0.1);
  border-radius: 11px;
  background: rgba(21, 32, 47, 0.84);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(57, 196, 255, 0.38);
  outline: 0;
}

.action-primary {
  background: linear-gradient(135deg, #0091ff, #0075ee);
  box-shadow: 0 12px 30px rgba(0, 127, 255, 0.28);
}

.action-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(125, 154, 192, 0.22);
}

.action-primary .action-icon {
  background: rgba(255, 255, 255, 0.14);
}

.action-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.line-icon {
  background: #33d756;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.action strong,
.action small {
  display: block;
}

.action strong {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

.action small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
}

.action i {
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.78);
  border-right: 2px solid rgba(255, 255, 255, 0.78);
  rotate: 45deg;
}

.content-section {
  padding: 26px 22px 0;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  color: #4baeff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.content-section h2 {
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: 18px 10px;
  border: 1px solid rgba(123, 164, 217, 0.12);
  border-radius: 9px;
  background: var(--tile);
  text-align: center;
}

.service-card h3 {
  margin: 13px 0 6px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: #f0f6ff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  filter: drop-shadow(0 0 8px rgba(0, 136, 255, 0.5));
}

.service-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.project-card {
  min-height: 225px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123, 164, 217, 0.12);
  border-radius: 9px;
  background: #111d2a;
}

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-card::after {
  position: absolute;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 8, 20, 0.92));
}

.project-card div {
  position: absolute;
  right: 10px;
  bottom: 12px;
  left: 10px;
  z-index: 1;
}

.project-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 10px;
}

.pager span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(151, 178, 211, 0.22);
}

.pager span:first-child {
  width: 22px;
  background: var(--blue);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 26px 22px 18px;
  border: 1px solid rgba(123, 164, 217, 0.16);
  border-radius: 9px;
  background: #071321;
}

.cta-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.82;
}

.cta-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 19, 33, 0.98) 0%, rgba(7, 19, 33, 0.72) 48%, rgba(7, 19, 33, 0.08) 100%);
}

.cta-panel div {
  position: relative;
  z-index: 1;
  padding: 28px 20px;
}

.cta-panel p {
  margin: 0 0 12px;
  color: #4baeff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.cta-panel h2 {
  margin: 0 0 22px;
  max-width: 260px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.cta-panel a {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0091ff, #0072ec);
  font-weight: 800;
}

.cta-panel a::after {
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  rotate: 45deg;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 22px 26px;
  overflow: hidden;
  border: 1px solid rgba(123, 164, 217, 0.1);
  border-radius: 9px;
  background: rgba(123, 164, 217, 0.12);
}

.stats div {
  min-height: 106px;
  display: grid;
  align-content: center;
  padding: 12px 8px;
  background: rgba(21, 32, 47, 0.84);
  text-align: center;
}

.stats span {
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
  font-family: var(--font-brand);
}

.stats p {
  margin: 9px 0 0;
  color: #e7f0fa;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 500;
}

.footer {
  padding: 0 22px 28px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 22px;
  border-top: 1px solid var(--line);
}

.socials a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 214, 255, 0.18);
  border-radius: 50%;
  color: #d7e4f4;
  font-weight: 800;
  font-family: var(--font-ui);
  background: rgba(21, 32, 47, 0.45);
}

.footer-brand {
  display: none;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

@media (min-width: 900px) {
  .page-shell {
    padding-block: 34px;
  }

  .phone-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 430px) {
  .page-shell {
    padding: 0;
  }

  .phone-card {
    min-height: 100vh;
    border-width: 0;
    border-radius: 0;
  }

  .brand-main {
    font-size: 34px;
  }

  .brand-sub {
    font-size: 14px;
  }

  .topbar,
  .hero,
  .quick-actions,
  .content-section,
  .footer {
    padding-inline: 16px;
  }

  .profile-photo {
    width: 178px;
    height: 178px;
  }

  .action {
    grid-template-columns: 50px 1fr 16px;
    min-height: 80px;
    padding: 12px;
  }

  .action-icon {
    width: 48px;
    height: 48px;
  }

  .action strong {
    font-size: 17px;
  }

  .project-row {
    overflow-x: auto;
    grid-template-columns: repeat(3, 132px);
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .project-card {
    scroll-snap-align: start;
  }

  .cta-panel,
  .stats {
    margin-inline: 16px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
