* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --bg-1: #080d14;
    --bg-2: #0d141f;
    --bg-3: #121c29;
    --panel: rgba(255, 255, 255, 0.05);
    --panel-2: rgba(255, 255, 255, 0.07);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(160, 218, 255, 0.18);
    --text: #f5f7fb;
    --muted: #aeb8c9;
    --cyan: #84e7ff;
    --cyan-2: #65cfff;
    --silver: #d7e7f2;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --max: 1180px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 18% 15%, rgba(90, 186, 255, 0.12), transparent 24%),
      radial-gradient(circle at 82% 18%, rgba(173, 229, 255, 0.08), transparent 22%),
      radial-gradient(circle at 75% 70%, rgba(109, 212, 255, 0.08), transparent 22%);
    z-index: -2;
  }
  
  .page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
    opacity: 0.22;
    z-index: -1;
  }
  
  .container {
    width: min(100% - 32px, var(--max));
    margin: 0 auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 13, 20, 0.42);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  .nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .logo {
    display: inline-flex;
    align-items: center;
  }
  
  .logo-image {
    line-height: 0;
  }
  
  .site-logo-img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .nav-menu a {
    color: var(--muted);
    transition: 0.25s ease;
  }
  
  .nav-menu a:hover {
    color: var(--silver);
  }
  
  .lang-switch {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--silver);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.25s ease;
  }
  
  .lang-switch:hover {
    border-color: var(--line-strong);
    color: var(--text);
  }
  
  .hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 56px 0 100px;
    overflow: hidden;
  }
  
  .hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: center;
  }
  
  .hero-copy {
    position: relative;
    z-index: 2;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(132,231,255,0.16);
    background: rgba(132,231,255,0.06);
    color: #bfefff;
    font-size: 0.92rem;
    margin-bottom: 20px;
  }
  
  .hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    max-width: 620px;
  }
  
  .hero-text {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin-bottom: 28px;
  }
  
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-primary {
    background: linear-gradient(135deg, rgba(132,231,255,0.95), rgba(101,207,255,0.72));
    color: #07121a;
    box-shadow: 0 18px 34px rgba(101, 207, 255, 0.22);
  }
  
  .btn-secondary {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--silver);
  }
  
  .btn-secondary:hover {
    border-color: var(--line-strong);
  }
  
  .hero-visual {
    position: relative;
    min-height: 620px;
  }
  
  .hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
  }
  
  .glow-a {
    width: 260px;
    height: 260px;
    background: rgba(103, 209, 255, 0.16);
    top: 50px;
    left: 20px;
  }
  
  .glow-b {
    width: 280px;
    height: 280px;
    background: rgba(184, 231, 255, 0.1);
    bottom: 20px;
    right: 0;
  }
  
  .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(170, 220, 255, 0.08);
  }
  
  .ring-a {
    width: 420px;
    height: 420px;
    top: 60px;
    right: 20px;
  }
  
  .ring-b {
    width: 280px;
    height: 280px;
    bottom: 80px;
    left: 80px;
  }
  
  .laptop-wrap {
    position: absolute;
    right: 0;
    top: 22px;
    width: min(100%, 610px);
    z-index: 2;
  }
  
  .laptop-screen {
    background: linear-gradient(180deg, #0f1722, #111c29);
    border: 10px solid #182331;
    border-radius: 26px 26px 12px 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 360px;
    position: relative;
  }
  
  .screen-topbar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
  }
  
  .screen-topbar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(230, 242, 250, 0.28);
  }
  
  .screen-slider {
    position: relative;
    min-height: 326px;
  }
  
  .screen-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    padding: 26px;
    background:
      radial-gradient(circle at top left, rgba(132,231,255,0.12), transparent 30%),
      radial-gradient(circle at bottom right, rgba(181,231,255,0.08), transparent 28%),
      linear-gradient(135deg, #0c131d, #132030);
  }
  
  .screen-slide.active {
    opacity: 1;
  }
  
  .slide-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .brand-mark {
    font-size: 1rem;
    color: #d9eef8;
    opacity: 0.92;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .slide-main h3,
  .slide-grid h4,
  .slide-dashboard h4 {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 10px;
    max-width: 360px;
  }
  
  .slide-main p,
  .slide-grid p,
  .slide-dashboard p {
    color: var(--muted);
    max-width: 430px;
  }
  
  .mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
  }
  
  .mini-card,
  .service-box,
  .dash-card,
  .phone-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
  }
  
  .mini-card {
    padding: 16px;
  }
  
  .mini-label {
    display: inline-block;
    font-size: 0.75rem;
    color: #9ccedf;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  
  .slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    height: 100%;
  }
  
  .service-box {
    padding: 18px;
  }
  
  .service-box.large {
    min-height: 210px;
  }
  
  .service-box.small {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
  }
  
  .service-line {
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    margin-bottom: 18px;
  }
  
  .slide-dashboard {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    height: 100%;
    align-items: stretch;
  }
  
  .dash-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .dash-right {
    display: grid;
    gap: 14px;
    align-content: center;
  }
  
  .dash-card {
    min-height: 72px;
    background:
      linear-gradient(90deg, rgba(132,231,255,0.1), transparent 70%),
      rgba(255,255,255,0.04);
  }
  
  .laptop-base {
    width: 106%;
    height: 20px;
    margin-left: -3%;
    background: linear-gradient(180deg, #a9b6c7, #738297);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 24px rgba(0,0,0,0.22);
  }
  
  .phone-wrap {
    position: absolute;
    right: 26px;
    bottom: 12px;
    width: 190px;
    z-index: 3;
  }
  
  .phone-screen {
    height: 390px;
    border-radius: 34px;
    background: linear-gradient(180deg, #101925, #172334);
    border: 9px solid #1d2b3b;
    box-shadow: 0 22px 50px rgba(0,0,0,0.34);
    padding: 14px;
    position: relative;
  }
  
  .phone-notch {
    width: 86px;
    height: 18px;
    border-radius: 0 0 12px 12px;
    background: #0c1118;
    margin: 0 auto 14px;
  }
  
  .phone-content {
    height: calc(100% - 32px);
    border-radius: 24px;
    background:
      radial-gradient(circle at top, rgba(132,231,255,0.13), transparent 34%),
      linear-gradient(180deg, #0c141e, #122031);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
  }
  
  .phone-brand {
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 10px;
  }
  
  .phone-tagline {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
  }
  
  .phone-card {
    padding: 16px;
    margin-bottom: 18px;
  }
  
  .phone-line {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 10px;
  }
  
  .phone-line.short {
    width: 68%;
    background: linear-gradient(90deg, rgba(132,231,255,0.26), rgba(255,255,255,0.06));
  }
  
  .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 46px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
  }
  
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(132,231,255,0.42));
  }
  
  .scroll-arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(210, 235, 245, 0.8);
    border-bottom: 2px solid rgba(210, 235, 245, 0.8);
    transform: rotate(45deg);
  }
  
  section {
    padding: 88px 0;
  }
  
  .section-head {
    margin-bottom: 28px;
  }
  
  .section-head h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .section-head p {
    color: var(--muted);
    max-width: 760px;
  }
  
  .about-section {
    position: relative;
    padding-top: 110px;
  }
  
  .about-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 34px;
    align-items: stretch;
  }
  
  .about-copy {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }
  
  .section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(132,231,255,0.14);
    background: rgba(132,231,255,0.05);
    color: #bfefff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .about-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
    color: #f7fbff;
  }
  
  .about-lead {
    font-size: 1.08rem;
    color: #d9e7f5;
    margin-bottom: 18px;
    max-width: 620px;
  }
  
  .about-description {
    color: var(--muted);
    max-width: 620px;
  }
  
  .about-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .pillar-card {
    min-height: 180px;
    padding: 24px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
  }
  
  .pillar-card::before {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(132,231,255,0.12), transparent 70%);
    pointer-events: none;
  }
  
  .pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(132,231,255,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  }
  
  .pillar-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ccedf;
  }
  
  .pillar-card h3 {
    font-size: 1.32rem;
    margin-bottom: 10px;
    color: #f5f9ff;
  }
  
  .pillar-card p {
    color: var(--muted);
    max-width: 240px;
  }
  
  .services-section {
    position: relative;
    padding-top: 110px;
  }
  
  .services-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
  }
  
  .services-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 14px;
    color: #f7fbff;
  }
  
  .services-head p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
  }
  
  .services-grid-strong {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .service-card-strong {
    position: relative;
    min-height: 280px;
    padding: 28px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }
  
  .service-card-strong::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(132,231,255,0.10), transparent 70%);
    pointer-events: none;
  }
  
  .service-card-strong:hover {
    transform: translateY(-5px);
    border-color: rgba(132,231,255,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  }
  
  .service-topline {
    width: 74px;
    height: 3px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, rgba(132,231,255,0.95), rgba(132,231,255,0.06));
  }
  
  .service-number {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ccedf;
  }
  
  .service-card-strong h3 {
    font-size: 1.36rem;
    line-height: 1.18;
    margin-bottom: 14px;
    color: #f5f9ff;
  }
  
  .service-card-strong p {
    color: var(--muted);
    max-width: 280px;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .card {
    padding: 28px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #97a6bc;
  }
  
  .site-footer {
    padding: 28px 0 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
  }
  
  .footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  .compact-slide {
    justify-content: center;
    gap: 18px;
  }
  
  .compact-slide .brand-mark {
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 6px;
  }
  
  .compact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .compact-box h4 {
    margin-bottom: 0;
  }
  
  .compact-dash {
    justify-content: center;
    gap: 10px;
  }
  
  .compact-dash h4 {
    margin-bottom: 0;
    max-width: 260px;
  }
  
  .phone-brand {
    margin-bottom: 18px;
  }
  
  .phone-card {
    margin-bottom: 22px;
  }

  .hero-centered {
    min-height: calc(100vh - 82px);
    padding: 46px 0 100px;
  }
  
  .hero-centered-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-top {
    max-width: 760px;
    margin-bottom: 26px;
    position: relative;
    z-index: 3;
  }
  
  .hero-mini-brand {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(132,231,255,0.16);
    background: rgba(255,255,255,0.03);
    color: #dff6ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
  }
  
  .hero-centered .hero-top h1 {
    max-width: none;
    margin-bottom: 14px;
  }
  
  .hero-centered-text {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
  }
  
  .hero-visual-centered {
    width: 100%;
    max-width: 980px;
    min-height: 620px;
    margin: 10px auto 24px;
    position: relative;
  }
  
.laptop-centered {
  left: 33%;
  right: auto;
  top: 58px;
  transform: translateX(-50%);
  width: min(100%, 610px);
}

.phone-centered {
  left: 74%;
  right: auto;
  top: 150px;
  bottom: auto;
  width: 180px;
}
  
  .centered-actions {
    justify-content: center;
  }
  
  .hero-bottom {
    position: relative;
    z-index: 3;
  }
  
  .simple-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 10px 6px;
  }
  
  .screen-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #eef8ff;
  }
  
  .screen-chip-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .screen-chip-row span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    color: #d5ebf6;
    font-size: 0.92rem;
  }
  
  .screen-lines,
  .screen-bars {
    width: min(100%, 440px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .line,
  .bar {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(132,231,255,0.22), rgba(255,255,255,0.04));
  }
  
  .line.long,
  .bar {
    width: 100%;
  }
  
  .line,
  .bar.medium {
    width: 76%;
  }
  
  .line.short,
  .bar.short {
    width: 52%;
  }
  
  .screen-grid {
    width: min(100%, 430px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
  }
  
  .screen-box {
    min-height: 84px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    color: #d8edf7;
    font-weight: 600;
  }
  
  .screen-box.big {
    grid-row: span 2;
    min-height: 182px;
    font-size: 1.15rem;
  }
  
  .phone-content-min {
    justify-content: center;
    gap: 14px;
  }
  
  .phone-content-min .phone-brand {
    margin-bottom: 4px;
  }
  
  .hero-centered .glow-a {
    width: 300px;
    height: 300px;
    left: 120px;
    top: 90px;
  }
  
  .hero-centered .glow-b {
    width: 320px;
    height: 320px;
    right: 120px;
    bottom: 70px;
  }

  .hero-dev {
    min-height: calc(100vh - 82px);
    padding: 42px 0 100px;
  }
  
  .hero-dev-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-top-dev {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 3;
  }
  
  .hero-top-dev h1 {
    max-width: 980px;
    margin: 0 auto 18px;
    font-size: clamp(2.6rem, 5.2vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 0%, #dff6ff 55%, #bfefff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: balance;
    filter: drop-shadow(0 0 18px rgba(132, 231, 255, 0.08));
  }
  
  .hero-scene {
    width: 100%;
    max-width: 1220px;
    min-height: 660px;
    position: relative;
    margin: 8px auto 24px;
  }
  
  .laptop-dev {
    position: absolute;
    left: 6%;
    top: 75px;
    width: 640px;
    z-index: 2;
  }
  
  .dev-screen {
    min-height: 360px;
  }
  
  .code-editor {
    padding: 28px 26px;
    min-height: 326px;
    background:
      radial-gradient(circle at top left, rgba(132,231,255,0.08), transparent 32%),
      linear-gradient(180deg, #0c121b, #101926);
    font-family: Menlo, Monaco, Consolas, monospace;
    font-size: 1rem;
    line-height: 1.9;
  }
  
  .code-line {
    color: #dfeeff;
    opacity: 0;
    transform: translateY(8px);
    animation: codeReveal 0.55s forwards;
    white-space: nowrap;
  }
  
  .code-line:nth-child(1) { animation-delay: 0.2s; }
  .code-line:nth-child(2) { animation-delay: 0.7s; }
  .code-line:nth-child(3) { animation-delay: 1.2s; }
  .code-line:nth-child(4) { animation-delay: 1.7s; }
  .code-line:nth-child(5) { animation-delay: 2.2s; }
  
  .c-key { color: #84e7ff; }
  .c-var { color: #dfeeff; }
  .c-op { color: #9fb7d6; }
  .c-fn { color: #9de9b9; }
  .c-par { color: #d4ddee; }
  
  .typing-line {
    position: relative;
  }
  
  .cursor {
    display: inline-block;
    width: 10px;
    height: 1.15em;
    margin-left: 4px;
    vertical-align: middle;
    background: #84e7ff;
    animation: blinkCursor 0.9s steps(1) infinite;
  }
  
  .scene-flow {
    position: absolute;
    left: 60%;
    top: 350px;
    width: 260px;
    height: 120px;
    z-index: 2;
    pointer-events: none;
  }
  
  .flow-core {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
      radial-gradient(circle at center, rgba(132,231,255,0.22), transparent 55%);
    filter: blur(22px);
    opacity: 0.9;
  }
  
  .flow-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(132,231,255,0.02),
      rgba(132,231,255,0.75),
      rgba(132,231,255,0.02)
    );
    box-shadow: 0 0 12px rgba(132,231,255,0.18);
  }
  
  .flow-line-1 {
    top: 28px;
    transform: rotate(-10deg);
  }
  
  .flow-line-2 {
    top: 58px;
  }
  
  .flow-line-3 {
    top: 88px;
    transform: rotate(10deg);
  }
  
  .flow-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #84e7ff;
    box-shadow:
      0 0 10px rgba(132,231,255,0.65),
      0 0 20px rgba(132,231,255,0.22);
  }
  
  .flow-particle-1 {
    top: 24px;
    animation: flowMove1 2.2s linear infinite;
  }
  
  .flow-particle-2 {
    top: 54px;
    animation: flowMove2 2.8s linear infinite;
  }
  
  .flow-particle-3 {
    top: 84px;
    animation: flowMove3 2.4s linear infinite;
  }
  
  @keyframes flowMove1 {
    0% {
      left: 0;
      opacity: 0;
      transform: scale(0.8);
    }
    15% {
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      left: calc(100% - 10px);
      opacity: 0;
      transform: scale(1.15);
    }
  }
  
  @keyframes flowMove2 {
    0% {
      left: 10%;
      opacity: 0;
      transform: scale(0.85);
    }
    15% {
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      left: calc(100% - 12px);
      opacity: 0;
      transform: scale(1.1);
    }
  }
  
  @keyframes flowMove3 {
    0% {
      left: 4%;
      opacity: 0;
      transform: scale(0.75);
    }
    15% {
      opacity: 1;
    }
    85% {
      opacity: 1;
    }
    100% {
      left: calc(100% - 8px);
      opacity: 0;
      transform: scale(1.2);
    }
  }
  
  .phone-game {
    position: absolute;
    right: 6%;
    top: 50px;
    width: 240px;
    z-index: 3;
  }
  
  .game-screen {
    height: 470px;
    border-radius: 34px;
    background: linear-gradient(180deg, #101925, #172334);
    border: 9px solid #1d2b3b;
    box-shadow: 0 22px 50px rgba(0,0,0,0.34);
    padding: 14px;
    position: relative;
  }
  
  .game-scene {
    height: calc(100% - 32px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background:
      radial-gradient(circle at top, rgba(132,231,255,0.12), transparent 30%),
      linear-gradient(180deg, #122031 0%, #19324a 45%, #102334 100%);
    position: relative;
  }
  
  .game-hud {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: #e5f7ff;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
  }
  
  .game-world {
    position: relative;
    height: calc(100% - 42px);
    overflow: hidden;
  }

  .game-world::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 25%, rgba(255,255,255,0.06), transparent 18%),
      linear-gradient(180deg, rgba(255,255,255,0.02), transparent 35%);
    pointer-events: none;
  }
  
  .game-world::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: 0;
    height: 120px;
    background:
      radial-gradient(circle at 20% 100%, rgba(98, 191, 255, 0.22), transparent 32%),
      radial-gradient(circle at 60% 100%, rgba(132,231,255,0.14), transparent 28%),
      linear-gradient(180deg, rgba(16,35,52,0) 0%, rgba(10,24,36,0.65) 100%);
    pointer-events: none;
  }
  
  .platform {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(180deg, #8df0ff, #53cde3);
    box-shadow: 0 8px 18px rgba(83,205,227,0.25);
  }
  
  .platform-main {
    width: 150px;
    height: 14px;
    left: 34px;
    bottom: 56px;
  }
  
  .platform-small {
    width: 86px;
    height: 12px;
    right: 22px;
    bottom: 142px;
  }
  
  .player {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 56px;
    bottom: 70px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffe36d, #ffb84d);
    box-shadow: 0 10px 16px rgba(255,184,77,0.3);
    animation: playerJump 1.8s ease-in-out infinite;
  }
  
  .coin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff2a0, #ffcf4b 70%);
    box-shadow: 0 0 18px rgba(255,207,75,0.45);
    animation: coinPulse 1.2s ease-in-out infinite;
  }
  
  .coin-one {
    left: 116px;
    bottom: 116px;
  }
  
  .coin-two {
    right: 56px;
    bottom: 192px;
    animation-delay: 0.4s;
  }
  
  .hero-dev .glow-a {
    width: 320px;
    height: 320px;
    left: 120px;
    top: 140px;
  }
  
  .hero-dev .glow-b {
    width: 320px;
    height: 320px;
    right: 70px;
    top: 150px;
  }
  
  @keyframes codeReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes blinkCursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }
  
  @keyframes playerJump {
    0%, 100% {
      transform: translate(0, 0) rotate(0deg);
    }
    20% {
      transform: translate(18px, -24px) rotate(6deg);
    }
    45% {
      transform: translate(54px, -58px) rotate(0deg);
    }
    70% {
      transform: translate(84px, -18px) rotate(-5deg);
    }
  }
  
  @keyframes coinPulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.14);
      opacity: 0.75;
    }
  }

  .contact-section {
    position: relative;
    padding-top: 110px;
  }
  
  .contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: stretch;
  }
  
  .contact-copy {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }
  
  .contact-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 16px;
    color: #f7fbff;
  }
  
  .contact-text {
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 560px;
  }
  
  .contact-details {
    display: grid;
    gap: 18px;
  }
  
  .contact-detail {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
  }
  
  .contact-detail span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ccedf;
    margin-bottom: 8px;
  }
  
  .contact-detail strong {
    color: #f5f9ff;
    font-size: 1rem;
  }
  
  .contact-form-wrap {
    position: relative;
  }
  
  .contact-form {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-radius: 16px;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: rgba(132,231,255,0.28);
    box-shadow: 0 0 0 3px rgba(132,231,255,0.06);
  }
  
  .contact-submit {
    margin: 10px auto 0;
    min-width: 180px;
    align-self: center;
  }
  
  .form-status {
    min-height: 24px;
    margin-top: 12px;
    font-size: 0.95rem;
    color: #cfeeff;
    text-align: center;
  }
  
  .form-status.error {
    color: #ffb7b7;
  }
  
  .mail-animation {
    position: absolute;
    right: 36px;
    bottom: 36px;
    width: 180px;
    height: 120px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
  }
  
  .mail-animation.active {
    opacity: 1;
  }
  
  .envelope {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 72px;
    height: 48px;
    transform-origin: center center;
  }
  
  .envelope-body {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #dff6ff, #9edfff);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(132,231,255,0.18);
  }
  
  .envelope-flap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 26px;
    background: linear-gradient(180deg, #ffffff, #d8f2ff);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: top center;
  }
  
  .letter {
    position: absolute;
    left: 10px;
    right: 10px;
    top: -4px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #eefaff);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
  
  .mail-trail {
    position: absolute;
    left: 56px;
    bottom: 36px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(132,231,255,0.6), rgba(132,231,255,0));
    opacity: 0;
  }
  
  .mail-animation.fly .letter {
    animation: letterSlide 0.45s ease forwards;
  }
  
  .mail-animation.fly .envelope-flap {
    animation: flapClose 0.45s ease forwards 0.25s;
  }
  
  .mail-animation.fly .envelope {
    animation: envelopeFly 1.5s ease-in-out forwards 0.7s;
  }
  
  .mail-animation.fly .mail-trail {
    animation: trailGrow 1.1s ease forwards 0.78s;
  }
  
  @keyframes letterSlide {
    0% {
      transform: translateY(-12px);
      opacity: 1;
    }
    100% {
      transform: translateY(12px);
      opacity: 1;
    }
  }
  
  @keyframes flapClose {
    0% {
      transform: rotateX(0deg);
    }
    100% {
      transform: rotateX(180deg);
    }
  }
  
  @keyframes envelopeFly {
    0% {
      transform: translate(0, 0) rotate(0deg) scale(1);
      opacity: 1;
    }
    35% {
      transform: translate(36px, -24px) rotate(-6deg) scale(1.02);
      opacity: 1;
    }
    100% {
      transform: translate(118px, -86px) rotate(12deg) scale(0.88);
      opacity: 0;
    }
  }
  
  @keyframes trailGrow {
    0% {
      width: 0;
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    100% {
      width: 100px;
      opacity: 0;
    }
  }

  .contact-trap {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }

  .policy-section {
    padding: 110px 0 80px;
  }
  
  .policy-wrap {
    max-width: 960px;
  }
  
  .policy-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
  }
  
  .policy-head h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.04;
    margin-bottom: 14px;
    color: #f7fbff;
  }
  
  .policy-head p {
    color: var(--muted);
  }
  
  .policy-card {
    display: none;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }
  
  .policy-card.active {
    display: block;
  }
  
  .policy-card h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #f5f9ff;
  }
  
  .policy-card h3 {
    font-size: 1.15rem;
    margin: 28px 0 10px;
    color: #e7f5ff;
  }
  
  .policy-card p,
  .policy-card li {
    color: var(--muted);
  }
  
  .policy-card ul {
    margin: 10px 0 0 20px;
  }
  
  .policy-card li {
    margin-bottom: 8px;
  }

  .policy-back-wrap {
    padding: 24px 32px 0;
  }
  
  .policy-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(127,231,255,0.16);
    background: rgba(127,231,255,0.05);
    color: var(--accent);
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.22s ease;
  }
  
  .policy-back-btn:hover {
    background: rgba(127,231,255,0.10);
    border-color: rgba(127,231,255,0.28);
    color: #ffffff;
    text-decoration: none;
    transform: translateX(-2px);
  }