@charset "UTF-8";
/*
  html5doctor.com Reset Stylesheet v1.6.1
  Last Updated: 2010-09-17
  Author: Richard Clark - http://richclarkdesign.com
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin and font styles */
body,
h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  font-weight: normal;
}

/* Improve text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Make forms and buttons consistent */
input,
button,
textarea,
select {
  font: inherit;
}

/* Reset button styles */
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button:focus {
  outline: none;
}

/******************************************************************
    ! Mixins
******************************************************************/
html {
  scroll-padding-top: 100px;
}
@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}
html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  cursor: default;
  color: #E8F4F8;
  background: #0D1117;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #FF6B35;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

ul {
  list-style-type: none;
}
ul.list {
  padding-left: 16px;
  list-style-type: disc;
}
ul.list li {
  color: #C4D4DC;
}
ul.list li::marker {
  color: #FF6B35;
}
ul.list li:not(:last-of-type) {
  margin-bottom: 4px;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
  color: #FF6B35;
}

.topo-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.topo-bg svg {
  width: 100%;
  height: 100%;
}

.topo-line {
  fill: none;
  stroke: #E8F4F8;
  stroke-width: 1;
  animation: topo-pulse 8s ease-in-out infinite;
}
.topo-line:nth-child(2) {
  animation-delay: -1s;
}
.topo-line:nth-child(3) {
  animation-delay: -2s;
}
.topo-line:nth-child(4) {
  animation-delay: -3s;
}
.topo-line:nth-child(5) {
  animation-delay: -4s;
}
.topo-line:nth-child(6) {
  animation-delay: -5s;
}
.topo-line:nth-child(7) {
  animation-delay: -6s;
}

@keyframes topo-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #FF6B35;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s;
  transform: translate(-50%, -50%);
}
.cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(255, 107, 53, 0.1);
}
@media (hover: none) {
  .cursor {
    display: none;
  }
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: #FF6B35;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
@media (hover: none) {
  .cursor-dot {
    display: none;
  }
}

.nav-ascension {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .nav-ascension {
    display: none;
  }
}

.nav-marker {
  width: 12px;
  height: 12px;
  border: 2px solid #C4D4DC;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-marker::before {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C4D4DC;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.nav-marker:hover::before, .nav-marker.active::before {
  opacity: 1;
  right: 28px;
}
.nav-marker:hover, .nav-marker.active {
  background: #FF6B35;
  border-color: #FF6B35;
  transform: rotate(45deg);
}

.nav-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #C4D4DC 0%, transparent 100%);
  left: 5px;
  top: 0;
  z-index: -1;
}

.header-monument {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
  .header-monument {
    padding: 1rem;
  }
}

.logo-altitude {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-peak {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-peak svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  color: #F7FAFA;
  line-height: 1;
  position: relative;
  top: 3px;
}

.logo-co {
  font-size: 0.5em;
  color: #FF6B35;
  margin-left: 0.1em;
  vertical-align: super;
  letter-spacing: 0.05em;
}

.coords {
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  color: #C4D4DC;
  letter-spacing: 0.05em;
}
@media (max-width: 576px) {
  .coords {
    display: none;
  }
}

.hero-sommet {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-sommet {
    padding: 4rem 2rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.altitude-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #4A5568;
  margin-bottom: 2rem;
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C4D4DC;
}
.altitude-badge .dot {
  width: 6px;
  height: 6px;
  background: #4ECDC4;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: #F7FAFA;
  margin-bottom: 2rem;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(100%);
  animation: reveal-word 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-title .line:nth-child(2) .word {
  animation-delay: 0.1s;
}
.hero-title .line:nth-child(3) .word {
  animation-delay: 0.2s;
}
.hero-title .accent {
  color: #FF6B35;
  position: relative;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.08em;
  background: #FF6B35;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-grow 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes reveal-word {
  to {
    transform: translateY(0);
  }
}
@keyframes underline-grow {
  to {
    transform: scaleX(1);
  }
}
.hero-subtitle {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: #C4D4DC;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #F7FAFA;
  color: #F7FAFA;
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF6B35;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.hero-cta:hover {
  color: #F7FAFA;
  border-color: #FF6B35;
}
.hero-cta:hover::before {
  transform: translateY(0);
}
.hero-cta:hover .arrow {
  transform: translateX(4px);
}
.hero-cta .arrow {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mountain-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 1;
}

.mountain-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.mountain-layer.back {
  opacity: 0.3;
  transform: translateY(20%);
}
.mountain-layer.mid {
  opacity: 0.5;
  transform: translateY(10%);
}
.mountain-layer.front {
  opacity: 0.8;
}

section {
  position: relative;
  z-index: 2;
  padding: 8rem 4rem;
  padding-right: calc(4rem + 60px);
  scroll-margin-top: 100px;
}
@media (max-width: 767px) {
  section {
    padding: 4rem 2rem;
    padding-right: 2rem;
  }
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.section-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: #4A5568;
  line-height: 1;
}

.section-label {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C4D4DC;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.about-statement {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  color: #F7FAFA;
}
.about-statement .highlight {
  color: #4ECDC4;
}

.about-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: #C4D4DC;
  line-height: 1.9;
}
.about-text p + p {
  margin-top: 2rem;
}

.team-peaks {
  display: flex;
  gap: 2rem;
  margin-top: 8rem;
  perspective: 1000px;
}
@media (max-width: 767px) {
  .team-peaks {
    flex-direction: column;
  }
}

.peak-card {
  flex: 1;
  background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0 100%);
}
.peak-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}
.peak-card:hover::before {
  opacity: 0.1;
}
.peak-card:hover .peak-avatar img {
  filter: grayscale(0%);
}
.peak-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #FF6B35 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.peak-avatar {
  width: 120px;
  height: 120px;
  background: #4A5568;
  margin-bottom: 1rem;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  overflow: hidden;
}
.peak-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.peak-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #F7FAFA;
  margin-bottom: 0.5rem;
}

.peak-role {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4ECDC4;
}

.peak-altitude {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  color: #4A5568;
}

.services-section {
  background: linear-gradient(180deg, transparent 0%, #1A202C 20%, #1A202C 80%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #4A5568;
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-block {
  background: #1A202C;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FF6B35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-block:hover {
  background: #2D3748;
}
.service-block:hover::before {
  transform: scaleX(1);
}
.service-block:hover .service-icon {
  color: #FF6B35;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  color: #C4D4DC;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #F7FAFA;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.9rem;
  color: #C4D4DC;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: #0D1117;
  color: #C4D4DC;
}

.portfolio-section {
  background: #0D1117;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.portfolio-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  color: #F7FAFA;
}

.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #4A5568;
  color: #C4D4DC;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover, .filter-btn.active {
  background: #F7FAFA;
  border-color: #F7FAFA;
  color: #0D1117;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  position: relative;
  cursor: pointer;
  background: #2D3748;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-out, filter 0.4s ease-out;
}
.project-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FF6B35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
}
.project-card:hover::after {
  transform: scaleX(1);
}
.project-card:hover .project-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.project-card.hidden {
  display: none;
}

.anim-brume .project-card.hiding {
  opacity: 0;
  transform: translateY(-15px) scale(1.02);
  filter: blur(15px) brightness(1.2);
  pointer-events: none;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #1A202C;
}

.project-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  filter: grayscale(50%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-category {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FF6B35;
}

.project-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: #F7FAFA;
  line-height: 1.1;
}

.project-tech {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: #C4D4DC;
}

.stack-section {
  background: #1A202C;
  position: relative;
}
.stack-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #4A5568, transparent);
}

.stack-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  text-align: center;
  color: #F7FAFA;
  margin-bottom: 8rem;
}

.stack-marquee {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid #4A5568;
  border-bottom: 1px solid #4A5568;
}

.stack-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.stack-item {
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #C4D4DC;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stack-item::before {
  content: "◆";
  color: #4A5568;
  font-size: 0.5rem;
}
.stack-item:hover {
  color: #FF6B35;
}

.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D1117 0%, #1A202C 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  width: 100%;
}
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  color: #F7FAFA;
  margin-bottom: 2rem;
}
.contact-title .accent {
  color: #FF6B35;
}

.contact-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #C4D4DC;
  max-width: 400px;
  margin-bottom: 4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  color: #C4D4DC;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-link:hover {
  color: #FF6B35;
}
.contact-link svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  background: #2D3748;
  padding: 2rem;
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #FFAA5C, #4ECDC4);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C4D4DC;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: #1A202C;
  border: 1px solid #4A5568;
  color: #F7FAFA;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #FF6B35;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #4A5568;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #FF6B35;
  border: none;
  color: #F7FAFA;
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-submit:hover {
  background: #FFAA5C;
}
.form-submit:hover::before {
  left: 100%;
}

.footer-summit {
  background: #0D1117;
  padding: 4rem;
  border-top: 1px solid #4A5568;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: #F7FAFA;
}

.footer-copy {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: #4A5568;
  letter-spacing: 0.1em;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4A5568;
  color: #C4D4DC;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link:hover {
  background: #FF6B35;
  border-color: #FF6B35;
  color: #F7FAFA;
}
.social-link svg {
  width: 18px;
  height: 18px;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(2) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(3) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.visible > *:nth-child(4) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 17, 23, 0.9);
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #2D3748;
  margin: 5% auto;
  padding: 4rem;
  width: 90%;
  max-width: 800px;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid #4A5568;
}
.modal-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #F7FAFA;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  color: #C4D4DC;
  background-color: #1A202C;
  border: 1px solid #4A5568;
  transition: all 0.3s ease;
}
.close svg {
  width: 16px;
  height: 16px;
}
.close:hover {
  color: #FF6B35;
  border-color: #FF6B35;
  transform: rotate(90deg);
}

.form-status {
  display: none;
  padding: 2rem;
  margin: 2rem 0;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
}
.form-status.success {
  display: block;
  color: #4ECDC4;
}
.form-status.success .success-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  color: #4ECDC4;
}
.form-status.error {
  display: block;
  color: #FF6B35;
}

.project-modal .modal-content {
  max-width: 1200px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .project-modal .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
  }
}
.project-modal .project-modal-content {
  display: flex;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 991px) {
  .project-modal .project-modal-content {
    flex-direction: column;
  }
}
.project-modal .project-modal-gallery {
  flex: 0 0 60%;
  background: #0D1117;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .project-modal .project-modal-gallery {
    flex: none;
    width: 100%;
  }
}
.project-modal .project-modal-gallery .gallery-main {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #0D1117;
}
.project-modal .project-modal-gallery .gallery-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.project-modal .project-modal-gallery .gallery-main .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(247, 250, 250, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7FAFA;
  transition: all 0.2s ease;
  z-index: 2;
  cursor: pointer;
}
.project-modal .project-modal-gallery .gallery-main .gallery-nav:hover {
  background: rgba(247, 250, 250, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.project-modal .project-modal-gallery .gallery-main .gallery-nav.prev {
  left: 1rem;
}
.project-modal .project-modal-gallery .gallery-main .gallery-nav.next {
  right: 1rem;
}
.project-modal .project-modal-gallery .gallery-main .gallery-nav svg {
  width: 24px;
  height: 24px;
}
.project-modal .project-modal-gallery .gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 1rem;
  overflow-x: auto;
  width: 100%;
  justify-content: center;
  background: rgba(247, 250, 250, 0.05);
}
.project-modal .project-modal-gallery .gallery-thumbs::-webkit-scrollbar {
  display: none;
}
.project-modal .project-modal-gallery .gallery-thumbs .thumb {
  flex: 0 0 80px;
  height: 60px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.project-modal .project-modal-gallery .gallery-thumbs .thumb:hover {
  opacity: 0.8;
}
.project-modal .project-modal-gallery .gallery-thumbs .thumb.active {
  opacity: 1;
  border-color: #FF6B35;
}
.project-modal .project-modal-gallery .gallery-thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-modal .project-modal-info {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  max-height: 80vh;
}
@media (max-width: 991px) {
  .project-modal .project-modal-info {
    max-height: none;
  }
}
.project-modal .project-modal-info h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #F7FAFA;
  margin-bottom: 1rem;
  padding-right: 3rem;
}
.project-modal .project-modal-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #F7FAFA;
  margin-bottom: 1rem;
}
.project-modal .project-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.project-modal .project-modal-tags .tag {
  padding: 4px 12px;
  background: #1A202C;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C4D4DC;
}
.project-modal .project-modal-description {
  margin-bottom: 2rem;
}
.project-modal .project-modal-description p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #C4D4DC;
}
.project-modal .project-modal-details {
  margin-bottom: 2rem;
}
.project-modal .project-modal-details .details-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #C4D4DC;
  margin-bottom: 8px;
}
.project-modal .project-modal-details .details-list li::before {
  content: "◆";
  color: #FF6B35;
  font-size: 0.6em;
  line-height: 2;
}
.project-modal .project-modal-links {
  display: flex;
  gap: 1rem;
}
.project-modal .project-modal-links .ui-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  background: #FF6B35;
  color: #F7FAFA;
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-modal .project-modal-links .ui-btn:hover {
  background: #FFAA5C;
}
.project-modal .project-modal-links .ui-btn svg {
  width: 16px;
  height: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ui-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: #FF6B35;
  border: none;
  color: #F7FAFA;
  font-family: "DM Mono", monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ui-btn:hover {
  background: #FFAA5C;
  color: #F7FAFA;
}

.ic {
  display: inline-flex;
}

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