/* ============================================================
   GTS DISTRIBUTIONS | 2026 Fortune 500-Grade Static Site
   Design System & Complete Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Palette */
  --bg-dark: #080C12;
  --bg-surface: #0F1520;
  --accent-mint: #00E5A0;
  --accent-amber: #F5A623;
  --text-primary: #EAEEF4;
  --text-secondary: #7A8BA6;
  --border-glow: rgba(0, 229, 160, 0.15);
  --border-glow-strong: rgba(0, 229, 160, 0.30);
  --amber-glow: rgba(245, 166, 35, 0.15);

  /* Glass */
  --glass-bg: rgba(15, 21, 32, 0.55);
  --glass-border: rgba(234, 238, 244, 0.06);
  --glass-blur: 20px;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Syne', 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Transition */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-mint);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-amber);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

::selection {
  background: rgba(0, 229, 160, 0.25);
  color: var(--text-primary);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-mint);
  outline-offset: 3px;
}

/* ── Noise Texture Overlay (depth) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-mint);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-mint);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(8, 12, 18, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--glass-border), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
}

.logo span {
  color: var(--accent-mint);
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-mint);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-cta--amber {
  background: var(--accent-amber);
  color: #0F1520;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
}

.btn-cta--amber:hover {
  color: #0F1520;
  box-shadow: 0 0 24px rgba(245, 166, 35, 0.35);
  transform: translateY(-1px);
}

.btn-cta--amber::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-cta--amber:hover::after {
  left: 120%;
}

.btn-cta--outline {
  background: transparent;
  color: var(--accent-mint);
  border: 1.5px solid var(--accent-mint);
  box-shadow: 0 0 0 0 rgba(0, 229, 160, 0);
}

.btn-cta--outline:hover {
  color: var(--accent-mint);
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.2);
  background: rgba(0, 229, 160, 0.06);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.95);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.nav-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--accent-mint);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Ambient glow background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(0, 229, 160, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 85%, rgba(245, 166, 35, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(0, 229, 160, 0.02) 0%, transparent 60%);
  z-index: 0;
}

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatShape 25s infinite ease-in-out;
}

.shape--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  border: 1px solid rgba(0, 229, 160, 0.06);
  animation-delay: 0s !important;
  opacity: 0 !important;
  animation-name: floatShape !important;
}

.shape--2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.04), transparent 70%);
  animation-delay: -8s !important;
}

.shape--3 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  border: 1px solid rgba(0, 229, 160, 0.05);
  border-radius: 30% 70% 50% 50%;
  animation-delay: -15s !important;
}

.shape--4 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 15%;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.03), transparent 60%);
  animation-delay: -5s !important;
}

.shape--5 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 10%;
  border: 1px solid rgba(245, 166, 35, 0.04);
  border-radius: 50% 30% 60% 40%;
  animation-delay: -12s !important;
}

.shape--hex {
  width: 160px;
  height: 160px;
  top: 15%;
  left: 30%;
  background: transparent;
  border: 1px solid rgba(0, 229, 160, 0.04);
  border-radius: 20%;
  transform: rotate(45deg);
  animation-delay: -18s !important;
}

@keyframes floatShape {
  0%, 100% { opacity: 0.04; transform: translate(0, 0) rotate(0deg); }
  25% { opacity: 0.07; transform: translate(20px, -30px) rotate(5deg); }
  50% { opacity: 0.05; transform: translate(-15px, 20px) rotate(-3deg); }
  75% { opacity: 0.08; transform: translate(10px, -10px) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-mint);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--accent-mint);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero h1 .line-muted {
  display: block;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.65em;
}

.hero h1 .line-bold {
  display: block;
  color: var(--text-primary);
}

.hero h1 .line-accent {
  display: block;
  background: linear-gradient(135deg, var(--accent-mint), #00c68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  stroke-width: 2;
  fill: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SERVICES SECTION | Bento Grid
   ============================================================ */
.services {
  position: relative;
  padding: var(--space-3xl) 0;
}

/* SVG wave divider above services */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--transition-smooth);
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 229, 160, 0.08);
}

.bento-card:hover::before {
  border-color: var(--border-glow);
}

.bento-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.12);
}

.bento-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.bento-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.bento-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-mint);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.bento-card__link:hover {
  gap: 0.6rem;
  color: var(--accent-mint);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  position: relative;
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-xl);
}

/* Terminal / Code Block */
.terminal-window {
  background: #0a0e14;
  border: 1px solid rgba(234, 238, 244, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(234, 238, 244, 0.03);
  border-bottom: 1px solid rgba(234, 238, 244, 0.06);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot--red { background: #ff5f57; }
.terminal-dot--yellow { background: #febc2e; }
.terminal-dot--green { background: #28c840; }

.terminal-bar span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-left: auto;
  font-family: var(--font-body);
}

.terminal-body {
  padding: var(--space-lg);
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-secondary);
  overflow-x: auto;
}

.terminal-body .key { color: var(--accent-mint); }
.terminal-body .string { color: var(--accent-amber); }
.terminal-body .number { color: #7dd3fc; }
.terminal-body .bool { color: #c084fc; }
.terminal-body .comment { color: #4a5568; font-style: italic; }
.terminal-body .brace { color: var(--text-secondary); }

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-mint);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 100px;
  background: rgba(0, 229, 160, 0.05);
  transition: all var(--transition-fast);
}

.tech-pill:hover {
  background: rgba(0, 229, 160, 0.1);
  border-color: rgba(0, 229, 160, 0.35);
}

/* ============================================================
   PROJECTS / WORK SECTION
   ============================================================ */
.work {
  position: relative;
  padding: var(--space-3xl) 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.project-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-card__header {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.project-card__header--mint {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.2), var(--bg-surface));
}

.project-card__header--amber {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), var(--bg-surface));
}

.project-card__header--mixed {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.15), rgba(245, 166, 35, 0.1), var(--bg-surface));
}

/* Decorative grid pattern on project headers */
.project-card__header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 238, 244, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 238, 244, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.project-card__body {
  padding: var(--space-xl);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.project-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.project-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  background: rgba(234, 238, 244, 0.05);
  border-radius: 100px;
  border: 1px solid rgba(234, 238, 244, 0.06);
}

.project-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-mint);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.project-card__link:hover {
  gap: 0.6rem;
  color: var(--accent-mint);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  position: relative;
  padding: var(--space-3xl) 0;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 620px;
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  position: relative;
}

/* Ambient glow behind form */
.contact-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: rgba(8, 12, 18, 0.6);
  border: 1px solid rgba(234, 238, 244, 0.1);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-mint);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 139, 166, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* SMS Consent */
.opt-in-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(0, 229, 160, 0.03);
  border: 1px solid rgba(0, 229, 160, 0.08);
  border-radius: var(--radius-sm);
}

.opt-in-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent-mint);
  cursor: pointer;
}

.opt-in-group label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.opt-in-group label a {
  color: var(--accent-mint);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F1520;
  background: var(--accent-amber);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.35);
  transform: translateY(-1px);
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s ease;
}

.btn-submit:hover::after {
  left: 120%;
}

.contact-info {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-info a {
  color: var(--accent-mint);
}

.contact-info p {
  margin-bottom: var(--space-xs);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-glow);
  background: var(--bg-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 280px;
}

.footer-nav h4,
.footer-legal h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a,
.footer-legal a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent-mint);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms)
   ============================================================ */
.legal-page {
  padding: calc(80px + var(--space-2xl)) 0 var(--space-3xl);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.legal-page .last-updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--glass-border);
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
  line-height: 1.8;
}

.legal-page li {
  margin-bottom: 0.3rem;
}

.legal-page strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-page a {
  color: var(--accent-mint);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.88rem;
}

.legal-page th,
.legal-page td {
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--glass-border);
}

.legal-page th {
  background: rgba(0, 229, 160, 0.06);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-page td {
  color: var(--text-secondary);
}

/* ============================================================
   RESPONSIVE | Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE | Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-description {
    font-size: 1.18rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
