/* 
  MESHWORK - SWISS BRUTALIST STYLE SYSTEM
  Websites woven for small businesses.
  Pitch Black, Electric Safety Orange, and Clean Editorial Grids.
*/

/* --- 1. FONTS & RESETS --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800;900&display=swap');

:root {
  /* Colors */
  --bg-black: #08080A;
  --bg-panel: #0F0F12;
  --bg-panel-light: #16161C;
  --orange: #FF5500;
  --orange-hover: #E04B00;
  --orange-light: rgba(255, 85, 0, 0.08);
  --fg-white: #FFFFFF;
  --fg-grey: #8F8F99;
  
  /* Borders */
  --border-color: #1C1C22;
  --border-active: #2D2D38;
  --border-radius: 4px;
  --border-radius-sm: 2px;
  
  /* Depth & Brutalist Shadows */
  --shadow-brutal: 4px 4px 0px var(--fg-white);
  --shadow-brutal-orange: 4px 4px 0px var(--orange);
  --shadow-brutal-black: 4px 4px 0px #000000;
  --shadow-inset: inset 2px 2px 6px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  background-color: var(--bg-black);
  color: var(--fg-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    linear-gradient(to right, rgba(28, 28, 34, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28, 28, 34, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: var(--border-active);
  border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* --- 2. GLOBAL UTILITIES & TYPOGRAPHY --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

p {
  color: var(--fg-grey);
}

.text-orange { color: var(--orange); }
.text-white { color: var(--fg-white); }
.text-muted { color: var(--fg-grey); }

.badge-brutal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  color: var(--fg-white);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-brutal.orange {
  background: var(--orange);
  color: #000000;
  border-color: var(--orange);
  font-weight: bold;
}

/* --- 3. BRUTALIST UI COMPONENTS --- */
.brutal-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  transition: border-color 0.25s ease;
}

.brutal-panel:hover {
  border-color: var(--border-active);
}

.brutal-panel.orange-bg {
  background: var(--orange);
  color: #000000;
  border-color: var(--orange);
}

.brutal-panel.orange-bg p {
  color: rgba(0, 0, 0, 0.85);
}

.brutal-well {
  background: #09090B;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-inset);
  padding: 24px;
}

/* Brutalist Buttons */
.btn-brutal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--fg-white);
  color: #000000;
  border: 1.5px solid #000000;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: var(--shadow-brutal-orange);
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--border-radius-sm);
}

.btn-brutal.orange {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--fg-white);
  box-shadow: var(--shadow-brutal);
}

.btn-brutal.dark {
  background: #000000;
  color: var(--fg-white);
  border-color: var(--border-active);
  box-shadow: 4px 4px 0px var(--border-active);
}

.btn-brutal:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--fg-white);
}

.btn-brutal.orange:hover {
  box-shadow: 6px 6px 0px var(--orange);
}

.btn-brutal:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--fg-white);
}

/* --- 4. NAVIGATION DOCK --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav-dock {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--fg-white);
  letter-spacing: -0.03em;
}

.brand-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(255, 85, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-grey);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--fg-white);
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
}

.nav-link.active {
  color: var(--orange);
  border-color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg-white);
  transition: 0.2s;
}

/* --- 5. SWISS HERO CANVAS --- */
.hero-canvas {
  height: 150vh;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-black);
}

.hero-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Upper Orange Block */
.hero-orange-block {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--orange);
  color: #000000;
  padding: 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero-plus-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-orange-block .meta-label {
  font-family: monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  display: block;
  margin-bottom: 40px;
}

.hero-huge-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 1300px;
  color: #000000;
  text-shadow: none;
}

/* Eyebrow: logo + studio name above headline */
.hero-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto 48px;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000000;
}
.hero-eyebrow-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0);
}

/* Animated word cycler */
.hero-word-wrap {
  display: block;
  position: relative;
  height: 1.05em;
  overflow: hidden;
}
.hero-word {
  position: absolute;
  left: 0;
  right: 0;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.hero-word.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-word.leaving {
  opacity: 0;
  transform: translateY(-110%);
}

/* Lower Dark Block - rises on scroll */
.hero-technical-block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38vh;
  overflow: hidden;
  transform: translateY(100%);
  will-change: transform;
  padding: 32px 0;
  background: var(--bg-black);
  border-top: 1px solid var(--border-color);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  will-change: transform;
}

.hero-technical-grid {
  display: flex;
  justify-content: center;
}

.hero-technical-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 640px;
}

.hero-brand-tagline {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--fg-white);
  font-weight: 600;
}

.technical-row {
  display: flex;
  gap: 40px;
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--fg-grey);
}

/* --- 6. SHARED SECTION UTILITIES --- */
.section-header {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-subtitle {
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

/* --- 7. WHO IT'S FOR (MARQUEE) --- */
.whofor-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.whofor-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  text-align: center;
  margin-bottom: 48px;
  color: var(--fg-white);
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marquee-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee-left 35s linear infinite;
}

.marquee-track.marquee-reverse {
  animation: marquee-right 35s linear infinite;
}

.marquee-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--border-active);
  border-radius: var(--border-radius-sm);
  font-family: monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-grey);
  white-space: nowrap;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* --- 8. REALITY / PROBLEM --- */
.reality-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-color);
}

.reality-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.reality-content {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reality-eyebrow {
  display: block;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-align: center;
}

.reality-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--fg-white);
  text-align: center;
}

.reality-punches {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reality-punches p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fg-grey);
  padding-left: 20px;
  border-left: 2px solid var(--border-active);
}

.reality-closing {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  text-align: center;
}

.reality-stat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border-active);
}

.reality-chart-labels {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.reality-chart-label {
  font-family: monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reality-chart-label.orange { color: var(--orange); }
.reality-chart-label.muted  { color: var(--fg-grey); }

.reality-chart-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  background: var(--bg-black);
}

.reality-inline-stat {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--fg-grey);
  line-height: 1.6;
  margin-top: 32px;
  padding-left: 12px;
  border-left: 2px solid var(--orange);
}

.reality-inline-stat-source {
  color: var(--border-active);
  font-size: 0.72rem;
}

.reality-chart-source {
  font-family: monospace;
  font-size: 0.62rem;
  color: var(--border-active);
  line-height: 1.5;
  margin-top: 16px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease,
              transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Orange line draw — add reveal-line alongside reveal for the effect */
.reveal-line::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 28px;
}
.reveal-line.visible::before {
  transform: scaleX(1);
}
.reveal.reveal-line {
  transition-delay: 0.5s;
}
.reveal.reveal-line[data-delay="1"] { transition-delay: 0.6s; }
.reveal.reveal-line[data-delay="2"] { transition-delay: 0.7s; }
.reveal.reveal-line[data-delay="3"] { transition-delay: 0.8s; }
.reveal.reveal-line[data-delay="4"] { transition-delay: 0.9s; }

/* --- 9. PROCESS TIMELINE --- */
.process-section {
  padding: 140px 0;
  background: var(--bg-black);
  border-bottom: 1px solid var(--border-color);
}

.process-section .section-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-timeline {
  margin-top: 80px;
}

.process-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-timeline-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-active);
  z-index: 0;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  position: relative;
  transition: transform 0.25s ease;
}

.process-step-item:hover {
  transform: scale(1.04);
}

.process-step-item:hover .process-step-title {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.process-step-num {
  display: block;
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 85, 0, 0.45);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-step-content {
  position: relative;
  z-index: 1;
}

.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  transition: text-shadow 0.25s ease;
}

.process-step-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--fg-grey);
  line-height: 1.7;
  margin: 0;
}

/* --- 9. PORTFOLIO PREVIEW --- */
.portfolio-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.portfolio-slider {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
}

a.portfolio-preview {
  display: block;
  text-decoration: none;
}

.portfolio-preview {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border-color);
  background: var(--bg-panel);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-preview:hover .portfolio-img-overlay {
  opacity: 1;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.portfolio-item h3 {
  font-size: 1.5rem;
  margin-top: 24px;
  margin-bottom: 6px;
}

.portfolio-overlay-arrow {
  font-family: monospace;
  font-size: 1.8rem;
  color: var(--orange);
  margin-top: auto;
}

.portfolio-cta {
  margin-top: 56px;
  text-align: center;
}

/* Custom interactive mockup generator via pure CSS vectors */
.mockup-canvas {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.mockup-nav {
  height: 28px;
  background: #09090B;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.mockup-nav-dot {
  width: 8px;
  height: 8px;
  background: var(--border-active);
  border-radius: 50%;
}

.mockup-hero {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.mockup-title-bar {
  width: 60%;
  height: 16px;
  background: var(--fg-white);
  border-radius: 2px;
}

.mockup-text-bar {
  width: 80%;
  height: 8px;
  background: var(--border-active);
  border-radius: 1px;
}

.mockup-btn {
  width: 120px;
  height: 24px;
  background: var(--orange);
}

/* --- 10. ABOUT / STATISTICS --- */
/* --- FAQ SECTION --- */
.faq-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-bottom-color: var(--border-active);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  gap: 24px;
}

.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.2s ease;
}

.faq-item.open .faq-q-text {
  color: var(--orange);
}

.faq-icon {
  font-family: monospace;
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
  opacity: 0.5;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}

@media (hover: hover) {
  .faq-item:hover .faq-q-text { color: var(--orange); }
  .faq-item:hover .faq-icon { transform: rotate(45deg); opacity: 1; }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 160px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--fg-grey);
  line-height: 1.75;
  max-width: 680px;
}

.faq-footer-note {
  margin-top: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--fg-grey);
}

.faq-contact-link {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 85, 0, 0.3);
  padding-bottom: 1px;
  margin-left: 6px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-contact-link:hover {
  border-bottom-color: var(--orange);
}

/* --- 11. INQUIRY TERMINAL (CONTACT FORM) --- */
.contact-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-details p {
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-grey);
}

.form-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--fg-grey);
  opacity: 0.65;
  margin-top: -6px;
  margin-bottom: 10px;
}

.form-input {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--orange);
}

.contact-form textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* --- Project Choice Selector --- */
.project-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.project-choice-input {
  display: none;
}

.project-choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-black);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.project-choice-card:hover {
  border-color: var(--border-active);
}

.project-choice-input:checked + .project-choice-card {
  border-color: var(--orange);
  background: rgba(255, 85, 0, 0.06);
}

.pc-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.project-choice-input:checked + .project-choice-card .pc-name {
  color: var(--orange);
}

.pc-price {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--fg-grey);
  transition: color 0.2s ease;
}

.project-choice-input:checked + .project-choice-card .pc-price {
  color: var(--orange);
}

/* --- Form success state --- */
.form-success {
  padding: 48px 0;
  text-align: left;
}

.form-success-eyebrow {
  display: block;
  font-family: monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.form-success-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.05;
}

.form-success-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg-grey);
  line-height: 1.7;
  margin: 0;
}

/* --- 12. BRUTALIST GIANT FOOTER - Inspired by hello@finlay.studio --- */
footer {
  background: var(--orange);
  color: #000000;
  padding: 100px 0 40px 0;
  border-top: 1px solid var(--bg-black);
}

.footer-top {
  border-bottom: 2px solid #000000;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.footer-email-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.04em;
  transition: transform 0.2s ease;
}

.footer-email-link:hover {
  transform: translateX(12px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: #000000;
  text-transform: uppercase;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links-title {
  font-family: monospace;
  color: #000000;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: monospace;
  font-size: 0.75rem;
  color: #ffffff;
}

.footer-bottom p {
  color: #ffffff;
}

/* --- 12b. SERVICES SECTION --- */
.services-section {
  padding: 120px 0;
  border-top: 1px solid var(--border-color);
}

.services-header {
  margin-bottom: 64px;
}

.services-eyebrow {
  display: block;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.services-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.services-subline {
  font-size: 1rem;
  color: var(--fg-grey);
  max-width: 480px;
  line-height: 1.6;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.service-card {
  background: var(--bg-black);
  display: flex;
  flex-direction: column;
  padding: 40px 32px 32px;
  position: relative;
  transition: background 0.2s ease;
}

.service-card:hover {
  background: var(--bg-panel);
}

.service-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #000;
  font-family: monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.service-card-top {
  flex: 1;
}

.service-card-num {
  display: block;
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--orange);
  opacity: 0.6;
  margin-bottom: 12px;
}

.service-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px;
}

.service-card-price {
  margin-bottom: 28px;
}

.service-card-amount {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-card-label {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--fg-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

.service-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-card-features li {
  font-size: 0.88rem;
  color: var(--fg-grey);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.service-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

.service-card-monthly {
  border: 1px dashed var(--border-active);
  padding: 20px;
  margin-bottom: 24px;
}

.service-card-monthly-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.service-card-monthly-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-grey);
}

.service-card-monthly-label {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-card-monthly-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card-monthly-items li {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--fg-grey);
}

.service-card-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--border-active);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.service-card-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 85, 0, 0.04);
}

.services-footnote {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--fg-grey);
  margin-top: 24px;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}

/* --- 13. ABOUT TEASER --- */
.about-teaser-section {
  padding: 100px 0 160px;
  border-top: 1px solid var(--border-color);
}

.about-teaser-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px;
}

.about-teaser-eyebrow {
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.about-teaser-line {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.about-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  width: fit-content;
}

.about-teaser-cta:hover {
  border-bottom-color: var(--orange);
}

.about-teaser-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-teaser-canvas-wrap {
  flex: 1;
  min-height: 380px;
  position: relative;
}

#about-grid-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .about-teaser-layout {
    flex-direction: column;
  }
  .about-teaser-canvas-wrap {
    display: none;
  }
}

/* --- 14. RESPONSIVE SYSTEM --- */
@media (max-width: 1024px) {
  .reality-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  
  .fit-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-brutal {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .portfolio-slider {
    grid-template-columns: 1fr;
  }

  .process-timeline-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-timeline-steps::before {
    display: none;
  }
  .process-step-item {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }
  .process-step-dot {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .project-choice {
    grid-template-columns: 1fr;
  }

  .contact-section .brutal-panel { padding: 28px !important; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-huge-title {
    font-size: clamp(1.3rem, 6.5vw, 2rem);
  }

  .hero-word-wrap {
    height: 1.4em;
  }

  .hero-word {
    top: 0;
  }

  .hero-canvas {
    background: transparent;
    border-bottom: none;
  }

  .whofor-section {
    margin-top: -35vh;
  }

  .hero-technical-block {
    padding: 18px 0;
  }

  .hero-technical-details {
    gap: 12px;
  }

  .hero-brand-tagline {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .reveal {
    transform: none;
    transition: opacity 0.8s ease;
  }

  .footer-email-link {
    font-size: clamp(0.85rem, 4vw, 1.1rem);
  }

  .footer-brand-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-dock {
    position: relative;
  }


  /* Mobile menu open state */
  .nav-dock.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-panel);
    border: 1px solid var(--border-active);
    border-top: 2px solid var(--orange);
    padding: 4px 0;
    z-index: 200;
    gap: 0;
  }

  .nav-dock.is-open .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 0.875rem;
    color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.15s ease, background 0.15s ease;
    text-align: left;
    letter-spacing: 0.04em;
  }

  .nav-dock.is-open li:last-child .nav-link {
    border-bottom: none;
  }

  /* Hamburger → X */
  .nav-dock.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-dock.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-dock.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (hover: hover) {
  .nav-dock.is-open .nav-link:hover {
    color: var(--orange);
    background: rgba(255, 85, 0, 0.05);
  }
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  pointer-events: none;
}

.preloader-top,
.preloader-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #08080A;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader-top    { top: 0; }
.preloader-bottom { bottom: 0; }

.preloader-top.split    { transform: translateY(-100%); }
.preloader-bottom.split { transform: translateY(100%); }

.preloader-logo-top,
.preloader-logo-bottom {
  position: absolute;
  left: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.preloader-logo-top    { bottom: 0; transform: translateX(-50%) translateY(50%); }
.preloader-logo-bottom { top: 0;    transform: translateX(-50%) translateY(-50%); }

.preloader-logo-top.fade-in,
.preloader-logo-bottom.fade-in { opacity: 1; }

.preloader-logo-img {
  height: 80px;
  width: auto;
  display: block;
}
