/* ==============================
   GLOBAL.CSS — Reset, Variables, Typography
   ============================== */

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --color-bg: #0b0b0f;
  --color-bg-dark: #0b0b0fff;
  --color-accent: #ff3c08;
  --color-text-primary: #c8ccd5;
  --color-text-hero: #C8CCD5;
  --color-text-service: #f4f4e8;
  --color-text-light: #f6f6fb;
  --color-text-dark: #0b0b0f;
  --color-portfolio-bg: #c8ccd5;
  --color-card-bg: #f6f6fb;
  --color-input-bg: #1b1b22;
  --color-border: rgba(156, 156, 156, 0.15);
  --color-border-light: rgba(238, 226, 226, 0.08);
  --color-border-light2: rgba(238, 226, 226, 0.12);
  --color-overlay-dark: rgba(8, 7, 7, 0.21);
  --color-tag-bg: rgba(255, 255, 237, 0.1);
  --color-white-08: rgba(255, 255, 255, 0.08);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-80: rgba(255, 255, 255, 0.8);

  /* Typography */
  --font-display: 'Russo One', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Font Sizes */
  --fs-hero: clamp(3rem, 6.5vw, 5.875rem);
  --fs-h1: clamp(2.5rem, 4.9vw, 4.375rem);
  --fs-h2: clamp(1.5rem, 2.8vw, 3.125rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.125rem, 1.5vw, 1.5625rem);
  --fs-h5: clamp(1rem, 1.3vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tag: 0.6875rem;
  --fs-cta: 1.25rem;

  /* Spacing */
  --spacing-section: clamp(4rem, 8vw, 7.5rem);
  --spacing-container: clamp(1.25rem, 3.2vw, 2.875rem);
  --container-max: 1348px;
  --container-outer: 1440px;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 5px;
  --radius-xl: 6px;
  --radius-xxl: 8px;
  --radius-card: 12px;
  --radius-circle: 1000px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0;
}

/* ---- Utility ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--spacing-container);
}

.container--inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

/* ---- Section Label ---- */
.section-tag {
  display: inline-flex;

  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-tag__num {
  color: var(--color-text-light);
}

.section-tag__label {
  color: var(--color-accent);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

/* ---- Selection ---- */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* ============================
   INTRO VIDEO OVERLAY
   ============================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  transition: opacity 0.9s ease;
}

.intro.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro__unmute {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.intro__unmute:hover {
  background: rgba(255, 255, 255, 0.25);
}

.intro__unmute.is-muted svg path:last-child {
  display: none;
}

/* Page content hidden while intro is active */
.intro-active .nav,
.intro-active main {
  opacity: 0;
  transition: none;
}


.gt-selected{
	background: #9C9C9C26 !important;
border: 1px solid #9C9C9C26 !important;
width: 36px!important;
height: 36px!important;
    display: flex;
    align-items: center;
    justify-content: center;
		font-family: "Russo One";
font-weight: 400;

font-size: 15px;

vertical-align: middle;

}
#gpt_float_wrapper{
	position:relative !important;
	    bottom: 0 !important;
    left: 0 !important;
    margin-right: 0 !important;

}
@media (max-width: 640px) {

.container {
padding:0 16px;
}}

.glsr-default form.glsr-form input.glsr-input, .glsr-default form.glsr-form select.glsr-select, .glsr-default form.glsr-form textarea.glsr-textarea {
  background: rgba(0, 0, 0, 0.07)!important;
	border: 1px solid rgba(0, 0, 0, 0.07)!important;
}