﻿:root {
  --bg: #07131f;
  --bg-deep: #030916;
  --panel: rgba(8, 20, 37, 0.78);
  --panel-strong: rgba(10, 22, 40, 0.94);
  --panel-soft: rgba(15, 29, 48, 0.72);
  --line: rgba(151, 197, 255, 0.14);
  --line-strong: rgba(151, 197, 255, 0.24);
  --text: #f4f7fb;
  --muted: #98aeca;
  --muted-strong: #bfd0e7;
  --accent: #7df2c8;
  --accent-2: #73a7ff;
  --accent-3: #ffbf69;
  --danger: #ff7878;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(115, 167, 255, 0.2), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(125, 242, 200, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 191, 105, 0.1), transparent 30%),
    linear-gradient(180deg, #040b14 0%, #06111c 38%, #07131f 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 84%);
  opacity: 0.42;
}

body::after {
  background:
    radial-gradient(circle at 15% 8%, rgba(115, 167, 255, 0.18), transparent 18%),
    radial-gradient(circle at 78% 20%, rgba(125, 242, 200, 0.16), transparent 18%);
  filter: blur(30px);
  opacity: 0.8;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(4, 11, 20, 0.72);
  border-bottom: 1px solid rgba(151, 197, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 18px;
  border: 1px solid rgba(125, 242, 200, 0.24);
  background: linear-gradient(135deg, rgba(115, 167, 255, 0.18), rgba(125, 242, 200, 0.12));
  color: var(--accent);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero-section {
  padding: 3rem 0 2.5rem;
}

.hero-grid,
.about-grid,
.case-shell,
.stack-layout,
.contact-shell,
.footer-wrap {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  align-items: center;
  min-height: calc(100vh - 92px);
}

.eyebrow,
.section-kicker,
.project-badge,
.project-year,
.mini-pill,
.showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border: 1px solid rgba(115, 167, 255, 0.22);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  color: var(--accent-2);
  background: rgba(115, 167, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-pill-warm,
.project-year,
.showcase-pill.muted {
  color: var(--accent-3);
  border-color: rgba(255, 191, 105, 0.2);
  background: rgba(255, 191, 105, 0.1);
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.trust-copy h2,
.trust-lead,
.case-copy h2,
.contact-shell h2 {
  margin: 1rem 0 1.2rem;
  font-family: "Sora", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  max-width: 11ch;
}

.hero-text,
.section-copy p,
.section-head p,
.trust-grid p,
.case-copy p,
.contact-shell p,
.project-card p,
.about-card p,
.hero-card p,
.case-points span,
.showcase-card p,
.contact-note p,
.hero-footnote span {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-actions,
.hero-meta,
.project-links,
.project-stack,
.contact-actions,
.stack-cloud,
.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin: 2rem 0 1rem;
}

.hero-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.hero-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.hero-inline span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(125, 242, 200, 0.35);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #a7ffd9 72%);
  color: #04190f;
  box-shadow: 0 20px 60px rgba(125, 242, 200, 0.2);
}

.button-secondary {
  border-color: rgba(115, 167, 255, 0.24);
  background: rgba(115, 167, 255, 0.08);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

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

.signal-row article,
.hero-card,
.trust-panel,
.trust-grid article,
.about-card,
.project-card,
.stack-panel,
.contact-shell,
.showcase-card,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-card,
.trust-grid article,
.about-card,
.project-card,
.showcase-card,
.contact-note {
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.hero-card:hover,
.trust-grid article:hover,
.about-card:hover,
.project-card:hover,
.showcase-card:hover,
.contact-note:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.signal-row article {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}

.signal-row strong,
.hero-footnote strong,
.contact-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.signal-row span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -8%;
  top: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 105, 0.22), transparent 68%);
  filter: blur(18px);
  z-index: -1;
}

.hero-card {
  padding: 1.5rem;
}

.hero-card-main {
  background:
    linear-gradient(180deg, rgba(115, 167, 255, 0.1), transparent 50%),
    linear-gradient(135deg, rgba(8, 20, 37, 0.96), rgba(7, 17, 31, 0.92));
}

.hero-card-top,
.showcase-top,
.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-card-main h2 {
  margin: 1rem 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-preview {
  margin: 1.5rem 0 1.2rem;
  border-radius: 28px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-shot {
  padding: 0.7rem;
}

.hero-shot img,
.showcase-image {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0d1727;
}

.showcase-media-card {
  overflow: hidden;
}

.showcase-image {
  margin-top: 1rem;
}

.showcase-image-large {
  min-height: 20rem;
  object-fit: cover;
}
.hero-footnote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta span,
.project-stack li,
.stack-cloud span {
  list-style: none;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-card-mini {
  min-height: 100%;
}

.mini-title,
.about-label {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card-mini strong,
.about-card h3,
.project-card h3,
.trust-grid h3 {
  display: block;
  margin: 0.9rem 0 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.trust-copy {
  display: grid;
  gap: 0.9rem;
}

.trust-lead {
  max-width: 44rem;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.trust-grid article {
  position: relative;
  overflow: hidden;
}

.trust-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 242, 200, 0.65), rgba(115, 167, 255, 0.05));
}
.trust-section,
.content-section {
  padding: 3rem 0;
}

.trust-panel {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(115, 167, 255, 0.08), rgba(125, 242, 200, 0.04)),
    var(--panel-strong);
}

.trust-copy h2,
.case-copy h2,
.section-head h2,
.section-copy h2,
.contact-shell h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  max-width: 12ch;
}

.trust-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  max-width: 16ch;
}

.trust-lead {
  max-width: 44rem;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-grid article {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  background: rgba(115, 167, 255, 0.12);
  color: var(--accent-2);
  font-weight: 800;
}

.about-grid,
.stack-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.about-card {
  padding: 1.5rem;
}

.accent-blue {
  background: linear-gradient(135deg, rgba(115, 167, 255, 0.12), rgba(255, 255, 255, 0.02)), var(--panel);
}

.accent-mint {
  background: linear-gradient(135deg, rgba(125, 242, 200, 0.12), rgba(255, 255, 255, 0.02)), var(--panel);
}

.accent-gold {
  background: linear-gradient(135deg, rgba(255, 191, 105, 0.12), rgba(255, 255, 255, 0.02)), var(--panel);
}

.case-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
}

.case-points {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0;
}

.case-points article {
  padding: 1rem 0 1rem 1.2rem;
  border-left: 1px solid rgba(115, 167, 255, 0.22);
}

.case-points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
}

.case-visual {
  display: grid;
  gap: 1rem;
}

.showcase-card {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(115, 167, 255, 0.05), transparent 42%),
    var(--panel-strong);
}

.showcase-wide {
  min-height: 26rem;
}

.calendar-preview {
  margin-top: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  min-height: 19rem;
}

.calendar-col {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.calendar-col.active {
  background: rgba(115, 167, 255, 0.08);
}

.calendar-col i {
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 242, 200, 0.5), rgba(115, 167, 255, 0.58));
  min-height: 1.15rem;
  align-self: start;
}

.calendar-col i.mid {
  min-height: 2rem;
}

.calendar-col i.tall {
  min-height: 3rem;
}

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

.finance-preview strong {
  display: block;
  margin: 1rem 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.bar-group {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.bar {
  display: block;
  height: 0.8rem;
  border-radius: 999px;
}

.bar-green {
  width: 88%;
  background: linear-gradient(90deg, #57f4c0, #91ffe0);
}

.bar-red {
  width: 52%;
  background: linear-gradient(90deg, #ff7d7d, #ffb08a);
}

.bar-blue {
  width: 74%;
  background: linear-gradient(90deg, #6ea7ff, #8ed5ff);
}

.admin-preview {
  margin-top: 1rem;
}

.admin-ring {
  width: 9rem;
  height: 9rem;
  margin: 1rem auto 1.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #101c2d 36%, transparent 38%),
    conic-gradient(#57f4c0 0 48%, #6ea7ff 48% 78%, #ffbf69 78% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section-head {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.projects-grid-compact .project-card {
  grid-column: span 4;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  min-height: 100%;
}

.project-visual {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f1726;
}

.project-links {
  margin-top: auto;
}

.project-links a,
.project-links span {
  color: var(--accent);
  font-weight: 800;
}

.project-links span {
  opacity: 0.92;
}

.stack-panel {
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(115, 167, 255, 0.08), rgba(125, 242, 200, 0.06)),
    var(--panel-strong);
}

.stack-cloud {
  gap: 1rem;
}

.stack-cloud span {
  font-size: 1rem;
  padding: 0.9rem 1.15rem;
}

.contact-shell {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 191, 105, 0.08), rgba(115, 167, 255, 0.06)),
    var(--panel-strong);
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-note {
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
}

.visit-counter {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(115, 167, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.visit-counter img {
  display: block;
  height: 20px;
  border-radius: 999px;
}

.footer-wrap p,
.footer-wrap a {
  color: var(--muted);
  font-size: 0.95rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html,
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .case-shell,
  .stack-layout,
  .contact-shell,
  .signal-row,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .projects-grid-compact .project-card {
    grid-column: span 12;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(4, 11, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .showcase-grid,
  .hero-card-grid,
  .footer-wrap,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .projects-grid,
  .projects-grid-compact {
    grid-template-columns: 1fr;
  }

  .projects-grid-compact .project-card {
    grid-column: auto;
  }

  .hero-section {
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .hero-copy h1,
  .trust-copy h2,
  .section-copy h2,
  .section-head h2,
  .case-copy h2,
  .contact-shell h2 {
    max-width: 100%;
  }

  .button,
  .contact-actions a {
    width: 100%;
  }

  .project-top,
  .hero-card-top,
  .showcase-top {
    flex-direction: column;
    align-items: flex-start;
  }

  
}













