:root {
  --color-bg: #080B11;
  --color-bg-s1: #0D121D;
  --color-bg-s2: #131A29;
  --color-bg-s3: #1A2337;
  --color-bg-s4: #222E47;
  --color-accent: #00F0FF;
  --color-accent-light: #70FFFF;
  --color-accent-dark: #00B8D4;
  --color-accent-glow: rgba(0, 240, 255, 0.22);
  --color-accent-sec: #8B5CF6;
  --color-accent-sec-glow: rgba(139, 92, 246, 0.22);
  --color-text: #F8FAFC;
  --color-text-sec: #94A3B8;
  --color-text-muted: #8E9EB5;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(0, 240, 255, 0.3);
  --font-display: Outfit, system-ui, -apple-system, sans-serif;
  --font-body: Inter, system-ui, -apple-system, sans-serif;
  --font-mono: JetBrains Mono, Fira Code, Consolas, monospace;
  --container-max: 1240px;
  --section-padding: clamp(4rem, 8vw, 8rem);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
picture {
  height: auto;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:target {
  scroll-margin-top: 5rem;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 400;
  color: #F8FAFC;
  background-color: #080B11;
  overflow-x: hidden;
  position: relative;
  background-image: radial-gradient(circle at 15% 15%, rgba(0, 240, 255, 0.03) 0%, transparent 40%), radial-gradient(circle at 85% 65%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 3.5vw + 0.75rem, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #94A3B8;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #00F0FF;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), text-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, a:focus-visible {
  color: #70FFFF;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.22);
}

strong, b {
  font-weight: 600;
  color: #F8FAFC;
}

em {
  font-style: italic;
}

code {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.9em;
  padding: 0.2em 0.5em;
  background: #131A29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #00F0FF;
}

::selection {
  background: rgba(0, 240, 255, 0.25);
  color: #F8FAFC;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 3rem 0;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
ul li, ol li {
  margin-bottom: 0.25rem;
  color: #94A3B8;
  line-height: 1.7;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #080B11;
}

::-webkit-scrollbar-thumb {
  background: #1A2337;
  border-radius: 100px;
  border: 2px solid #080B11;
}
::-webkit-scrollbar-thumb:hover {
  background: #00B8D4;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #1A2337 #080B11;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 840px;
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
}

.section--surface {
  background-color: #0D121D;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section--elevated {
  background-color: #131A29;
}

.section__header {
  margin-bottom: clamp(3rem, 4vw, 6rem);
  position: relative;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  position: relative;
  padding: 0.35em 0.9em;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.section__label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00F0FF;
  box-shadow: 0 0 8px #00F0FF;
}

.section__title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__subtitle {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #94A3B8;
  max-width: 60ch;
  margin-top: 1rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 28rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.grid--asym {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .grid--asym {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(0, 240, 255, 0.25) 50%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
  margin-block: 2rem;
}

.sr-only, .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 50;
  padding: 0.5rem 1.5rem;
  background: #00F0FF;
  color: #080B11;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  border-radius: 0 0 10px 10px;
  transition: top 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.text-accent {
  color: #00F0FF;
}

.text-gradient {
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary {
  color: #94A3B8;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 1.75em;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  font-weight: 600;
  line-height: 1;
  border-radius: 10px;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid #00F0FF;
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, #00F0FF 0%, #A78BFA 100%);
  color: #050811;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
}
.btn--primary:hover {
  color: #050811;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 240, 255, 0.55), 0 0 20px rgba(139, 92, 246, 0.4);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: rgba(0, 240, 255, 0.05);
  color: #00F0FF;
  border: 1px solid rgba(0, 240, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: #70FFFF;
  color: #70FFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
}
.btn--secondary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  color: #F8FAFC;
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--icon {
  padding: 0.6em;
  border-radius: 10px;
}
.btn--icon svg {
  width: 1.25em;
  height: 1.25em;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 0.85em;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.5;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tag:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: #00F0FF;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), padding 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background-color: rgba(8, 11, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 1.2vw + 0.5rem, 1.4rem);
  color: #F8FAFC;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
}
.header__logo .logo__accent {
  color: #00F0FF;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.22);
}
.header__logo:hover {
  color: #70FFFF;
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
  box-shadow: 0 0 8px #00F0FF;
}
.nav__link:hover, .nav__link:focus-visible, .nav__link[aria-current=true], .nav__link[aria-current=page] {
  color: #F8FAFC;
}
.nav__link:hover::after, .nav__link:focus-visible::after, .nav__link[aria-current=true]::after, .nav__link[aria-current=page]::after {
  width: 100%;
}
.nav__link[aria-current=true], .nav__link[aria-current=page] {
  color: #00F0FF;
}

.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 31;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__toggle:hover {
  border-color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
}
@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

.toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #F8FAFC;
  border-radius: 2px;
  position: relative;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle__bar::before, .toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F8FAFC;
  border-radius: 2px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), top 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle__bar::before {
  top: -7px;
}
.toggle__bar::after {
  top: 7px;
}

.header__toggle[aria-expanded=true] .toggle__bar {
  background: transparent;
}
.header__toggle[aria-expanded=true] .toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
  background: #00F0FF;
}
.header__toggle[aria-expanded=true] .toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
  background: #00F0FF;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 400px);
  background: #0D121D;
  z-index: 30;
  padding: 5.5rem 3rem 3rem;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 12, 0.75);
  backdrop-filter: blur(8px);
  z-index: 29;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1), visibility 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__link {
  display: block;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav__link:hover, .mobile-nav__link:focus-visible {
  color: #F8FAFC;
  background: rgba(0, 240, 255, 0.05);
}
.mobile-nav__link[aria-current=true], .mobile-nav__link[aria-current=page] {
  color: #00F0FF;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  padding: 0.4em 1em;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero__label::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: #00F0FF;
  border-radius: 50%;
  box-shadow: 0 0 8px #00F0FF;
  animation: pulse-dot 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__label::before {
    animation: none;
  }
}

.hero__title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.5rem, 5vw + 1rem, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #F8FAFC;
  margin-bottom: 2rem;
}
.hero__title .hero__title-accent {
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero__description {
  font-size: clamp(1.05rem, 0.8vw + 0.75rem, 1.25rem);
  color: #94A3B8;
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 3rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 480px) {
  .hero__meta {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
}

.hero__stat-value {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 800;
  color: #F8FAFC;
  background: linear-gradient(180deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.hero__stat-label {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: clamp(0.8125rem, 0.3vw + 0.65rem, 0.875rem);
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero__visual-wrap {
  position: relative;
  z-index: 1;
}

.hero__visual-card {
  position: relative;
  border-radius: 24px;
  background: #131A29;
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 240, 255, 0.12);
  overflow: hidden;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 70px rgba(0, 240, 255, 0.22);
}

.hero__visual-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}

.hero__visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__visual-badge .badge-label {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__visual-badge .badge-status {
  font-size: 0.75rem;
  color: #94A3B8;
}

.hero__decoration {
  position: absolute;
  right: -10%;
  top: 10%;
  width: clamp(400px, 50vw, 800px);
  height: clamp(400px, 50vw, 800px);
  pointer-events: none;
  z-index: 0;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(0, 240, 255, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 5vw, 6rem);
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.about__content p {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  line-height: 1.8;
}

.about__lead {
  font-size: clamp(1.15rem, 0.8vw + 0.85rem, 1.35rem) !important;
  color: #F8FAFC !important;
  font-weight: 500;
  line-height: 1.7 !important;
  margin-bottom: 2rem !important;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .about__highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.about__highlight {
  padding: 1.5rem;
  background: #131A29;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.about__highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.about__highlight:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}

.about__highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: #00F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__highlight-icon svg {
  width: 100%;
  height: 100%;
}

.about__highlight-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem);
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.about__highlight-text {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  margin-bottom: 0;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 480px) {
  .capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .capabilities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.capability-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.capability-card:hover {
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 240, 255, 0.15);
}
.capability-card:hover::before {
  opacity: 1;
}

.capability-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.5rem;
  color: #00F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}
.capability-card__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.75;
}

.capability-card__title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 1rem;
}

.capability-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.capability-card__list li {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0;
}
.capability-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 2px;
  background: #00F0FF;
  box-shadow: 0 0 6px #00F0FF;
}

.case-studies__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.case-study {
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.case-study__header {
  padding: clamp(1.5rem, 3vw, 3rem);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  min-height: 44px;
  user-select: none;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}
@media (min-width: 768px) {
  .case-study__header {
    grid-template-columns: 1.4fr 0.6fr auto;
  }
}
.case-study__header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.case-study__header-content {
  flex: 1;
}

.case-study__thumb-wrap {
  display: none;
}
@media (min-width: 768px) {
  .case-study__thumb-wrap {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
}

.case-study__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study:hover .case-study__thumb {
  transform: scale(1.03);
}

.case-study__number {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00F0FF;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.case-study__title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.case-study__brief {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  margin-bottom: 0;
  max-width: 58ch;
}

.case-study__toggle {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.02);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study__header:hover .case-study__toggle {
  color: #00F0FF;
  border-color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
}

.case-study[data-expanded=true] {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.12), 0 16px 40px rgba(0, 0, 0, 0.6);
}
.case-study[data-expanded=true] .case-study__toggle {
  color: #00F0FF;
  border-color: #00F0FF;
  background: rgba(0, 240, 255, 0.12);
}
.case-study[data-expanded=true] .case-study__toggle svg {
  transform: rotate(180deg);
}

.case-study__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.case-study[data-expanded=true] .case-study__body {
  opacity: 1;
}

.case-study__content {
  padding: 0 clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study__visual-large {
  margin-block: 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.case-study__visual-large img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.case-study__section {
  padding-block: 1.5rem;
}
.case-study__section + .case-study__section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study__section-title {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.case-study__section-text {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 0;
}

.case-study__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}
@media (min-width: 768px) {
  .timeline {
    padding-left: 4rem;
  }
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, #00F0FF, #8B5CF6 40%, rgba(255, 255, 255, 0.08) 80%, transparent);
}
@media (min-width: 768px) {
  .timeline::before {
    left: 0.5rem;
  }
}

.timeline__item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-3rem - 4px);
  top: 0.35em;
  width: 12px;
  height: 12px;
  background: #080B11;
  border: 2px solid #00F0FF;
  border-radius: 50%;
  z-index: 1;
}
@media (min-width: 768px) {
  .timeline__item::before {
    left: calc(-4rem + 0.5rem - 5px);
  }
}
.timeline__item:first-child::before {
  background: #00F0FF;
  box-shadow: 0 0 14px #00F0FF;
  border-color: #FFFFFF;
}

.timeline__date {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  color: #00F0FF;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.timeline__role {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 0.25rem;
}

.timeline__company {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.timeline__desc {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 0;
}

.timeline__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 0.2em 0.8em;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.freelance__content {
  max-width: 52rem;
}

.freelance__lead {
  font-size: clamp(1.15rem, 0.8vw + 0.85rem, 1.35rem);
  color: #F8FAFC;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.freelance__text {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #94A3B8;
  line-height: 1.8;
}

.freelance__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 480px) {
  .freelance__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .freelance__highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.freelance__highlight-item {
  padding: 1.5rem;
  background: #131A29;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.freelance__highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.freelance__highlight-item:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.freelance__highlight-item:hover::before {
  opacity: 1;
}
.freelance__highlight-item .highlight-label {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  color: #00F0FF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.freelance__highlight-item .highlight-value {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0;
}

.tech__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .tech__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-group {
  padding: 2rem;
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.tech-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-group:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 240, 255, 0.12);
}
.tech-group:hover::before {
  opacity: 1;
}
.tech-group:hover .tech-group__icon {
  background: rgba(0, 240, 255, 0.16);
  border-color: #00F0FF;
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.35);
  transform: scale(1.05);
}

.tech-group__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-group__icon {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.4rem;
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: #00F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-group__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.tech-group__title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  font-weight: 700;
  color: #F8FAFC;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.tech-group__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tech-group__list li {
  margin-bottom: 0;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4em 0.9em;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94A3B8;
  background: #131A29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.5;
}
.tech-tag:hover {
  color: #00F0FF;
  border-color: rgba(0, 240, 255, 0.4);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
  transform: translateY(-1px);
}

.working__content {
  max-width: 52rem;
}

.working__lead {
  font-size: clamp(1.15rem, 0.8vw + 0.85rem, 1.35rem);
  color: #F8FAFC;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.working__text {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #94A3B8;
  line-height: 1.8;
}

.working__cta {
  margin-top: 3rem;
}

.resume-page {
  padding-top: 6rem;
}

.resume__header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .resume__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.resume__header-content {
  flex: 1;
}

.resume__name {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 3.5vw + 0.75rem, 3.5rem);
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.resume__title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem);
  color: #00F0FF;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resume__summary {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #94A3B8;
  line-height: 1.8;
  max-width: 65ch;
}

.resume__download {
  flex-shrink: 0;
}

.resume__section {
  margin-bottom: 4rem;
}

.resume__section-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #00F0FF;
  display: inline-block;
  letter-spacing: -0.02em;
}

.resume-entry {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.resume-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.resume-entry__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .resume-entry__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

.resume-entry__role {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: #F8FAFC;
}

.resume-entry__date {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: clamp(0.8125rem, 0.3vw + 0.65rem, 0.875rem);
  color: #00F0FF;
}

.resume-entry__company {
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #94A3B8;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resume-entry__desc {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  line-height: 1.7;
}

.resume__skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 1.5rem;
}

.resume__skill-group {
  padding: 1.5rem;
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}
.resume__skill-group h3 {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 700;
  color: #00F0FF;
  margin-bottom: 0.5rem;
}
.resume__skill-group p {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 0;
}

.resume__credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .resume__credentials {
    grid-template-columns: 1fr 1fr;
  }
}

.resume__credential {
  padding: 1.5rem;
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.resume__credential-title {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 0.25rem;
}

.resume__credential-detail {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  margin-bottom: 0;
}

.contact-page {
  padding-top: 6rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  max-width: 50rem;
}

.contact__info {
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.contact__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
}
.contact__info h2 {
  margin-bottom: 2rem;
}

.contact__text {
  font-size: clamp(1.05rem, 0.5vw + 0.85rem, 1.2rem);
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 480px) {
  .contact__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.contact__link-item {
  margin-bottom: 0;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 500;
  color: #F8FAFC;
  background: #131A29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  padding: 0.8em 1.4em;
  min-height: 48px;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__link svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: #00F0FF;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}
.contact__link:hover, .contact__link:focus-visible {
  color: #FFFFFF;
  border-color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2);
}

.contact__form {
  background: #0D121D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 100%);
  border-radius: 24px 24px 0 0;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  font-weight: 500;
  color: #F8FAFC;
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
  display: block;
  width: 100%;
  padding: 0.85em 1.1em;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  color: #F8FAFC;
  background: #131A29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #94A3B8;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  background: #1A2337;
  border-color: #00F0FF;
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}
.form__input[aria-invalid=true],
.form__textarea[aria-invalid=true] {
  border-color: #FB7185;
}
.form__input[aria-invalid=true]:focus,
.form__textarea[aria-invalid=true]:focus {
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}

.form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.form__error {
  display: none;
  font-size: clamp(0.8125rem, 0.3vw + 0.65rem, 0.875rem);
  color: #FB7185;
  margin-top: 0.25rem;
}
.form__error.is-visible {
  display: block;
}

.form__submit {
  width: 100%;
}
@media (min-width: 480px) {
  .form__submit {
    width: auto;
  }
}

.form__status {
  margin-top: 1rem;
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  padding: 1rem;
  border-radius: 10px;
  display: none;
}
.form__status.is-visible {
  display: block;
}
.form__status.is-success {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.form__status.is-error {
  color: #FB7185;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.site-footer {
  padding-block: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0D121D;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__name {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 700;
  color: #F8FAFC;
}

.footer__copyright {
  font-size: clamp(0.8125rem, 0.3vw + 0.65rem, 0.875rem);
  color: #94A3B8;
  margin-bottom: 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  font-size: clamp(0.875rem, 0.4vw + 0.7rem, 0.9375rem);
  color: #94A3B8;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer__link:hover, .footer__link:focus-visible {
  color: #00F0FF;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}
.footer__social-link:hover, .footer__social-link:focus-visible {
  color: #00F0FF;
  border-color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.4s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

.reveal-delay-7 {
  transition-delay: 0.56s;
}

.reveal-delay-8 {
  transition-delay: 0.64s;
}

.reveal-delay-9 {
  transition-delay: 0.72s;
}

.reveal-delay-10 {
  transition-delay: 0.8s;
}

.reveal-delay-11 {
  transition-delay: 0.88s;
}

.reveal-delay-12 {
  transition-delay: 0.96s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes draw-line {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes subtle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes slow-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .mobile-nav,
  .mobile-nav__overlay,
  .resume__download,
  .btn,
  .hero__decoration {
    display: none !important;
  }
  body {
    background: white !important;
    color: #1a1a1a !important;
    font-size: 11pt;
    line-height: 1.5;
  }
  * {
    color: #1a1a1a !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
    border-color: #ccc !important;
  }
  .resume-page {
    padding-top: 0 !important;
  }
  .section {
    padding-block: 1rem !important;
  }
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .resume__section-title {
    border-bottom-color: #333 !important;
  }
  .resume__title,
  .resume-entry__company {
    color: #555 !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666 !important;
  }
  .nav__link::after,
  .footer__link::after {
    content: none;
  }
  .resume__section {
    page-break-inside: avoid;
  }
  .resume-entry {
    page-break-inside: avoid;
  }
  @page {
    margin: 1.5cm 2cm;
  }
}

/*# sourceMappingURL=main.css.map */
