/* ===================================================
   IMPRESSIVE GROUP — Design System
   Pure CSS for GoDaddy Shared Hosting
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === TOKENS === */
:root {
  --canvas:        #0a0a0b;
  --surface:       #131316;
  --surface-hover: #1a1a1f;
  --border:        #28282f;
  --primary:       #ff5e00;
  --primary-light: #ff7a26;
  --text:          #f0f0f5;
  --text-muted:    #8e8e9a;
  --text-subtle:   #5c5c6a;
  --white:         #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 76px;
  --max-w:    1160px;
  --pad:      clamp(1.25rem, 5vw, 2rem);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.45);
  --shadow-md: 0 8px 32px rgba(0,0,0,.55);
  --shadow-glow: 0 0 28px rgba(255,94,0,.22);
  --t: .2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); letter-spacing: -.03em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }

.label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: .6rem;
}

.text-primary { color: var(--primary); }
.text-muted   { color: var(--text-muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #ff9e5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; stroke-width: 2; }

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-h);
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
}
.logo-main span { color: var(--primary); }
.logo-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: .92rem;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--pad) 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-block: .25rem;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu.open { display: flex; }

/* === FOOTER === */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}
.footer-logo { display: inline-block; margin-bottom: .75rem; }
.footer-logo .logo-main { font-size: 1.3rem; }
.socials {
  display: flex;
  gap: .65rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
}
.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.social-btn svg { width: 16px; height: 16px; stroke-width: 2; }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .9rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--primary); }

.contact-row {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 2;
  fill: none;
}
.contact-row span, .contact-row a {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-row a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .82rem; color: var(--text-subtle); }

/* === SECTION BASE === */
.section { padding: 6rem 0; }
.section-dark { background: var(--surface); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); line-height: 1.75; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: calc(var(--header-h) + 5rem) 0 4rem;
  background: linear-gradient(180deg, #0d0d10 0%, var(--canvas) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* === HOME HERO === */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,11,.88) 45%, rgba(10,10,11,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 4rem;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: block;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(240,240,245,.85);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === PILLARS === */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,94,0,.35);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.pillar-card.featured {
  border-color: rgba(255,94,0,.3);
  background: linear-gradient(145deg, rgba(255,94,0,.06) 0%, var(--surface) 60%);
}
.pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,94,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
}
.pillar-card h3 { font-size: 1.2rem; }
.pillar-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; flex: 1; }
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: .5rem;
  transition: gap var(--t);
}
.pillar-link:hover { gap: .6rem; }
.pillar-link svg { width: 16px; height: 16px; stroke: var(--primary); stroke-width: 2; fill: none; }

/* === ABOUT SNAPSHOT === */
.about-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-snapshot-text .label { margin-bottom: .75rem; }
.about-snapshot-text h2 { margin-bottom: 1.25rem; }
.about-snapshot-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* === PUBLICATIONS PREVIEW === */
.pub-list { 
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 820px; margin-inline: auto;
}
.pub-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t);
}
.pub-row:hover { border-color: rgba(255,94,0,.3); }
.pub-icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary); stroke-width: 1.8; fill: none;
  flex-shrink: 0;
}
.pub-text { flex: 1; }
.pub-text strong { display: block; font-size: .95rem; color: var(--white); margin-bottom: .2rem; }
.pub-text span { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.pub-badge {
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.pub-dl {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,94,0,.35);
  color: var(--primary);
  white-space: nowrap;
  transition: background var(--t);
}
.pub-dl:hover { background: rgba(255,94,0,.1); color: var(--primary); }
.pub-dl svg { width: 14px; height: 14px; stroke: var(--primary); stroke-width: 2; fill: none; }

/* === ABOUT PAGE === */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
.mv-card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.mv-card h2 { font-size: 1.3rem; color: var(--primary); margin-bottom: 1rem; }
.mv-card p { color: var(--text-muted); line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
}
.value-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,94,0,.12);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 { margin-bottom: .75rem; }
.value-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.7; margin: 0; }

.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.story-col h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  margin-bottom: 1.5rem;
}
.story-items { display: flex; flex-direction: column; gap: 1.25rem; }
.story-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.story-item svg {
  width: 18px; height: 18px;
  stroke: var(--primary); stroke-width: 2; fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.story-item p { font-size: .93rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* === SERVICES PAGE === */
.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.service-block:hover { border-color: rgba(255,94,0,.2); }
.service-div-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: .5rem;
}
.service-block h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 1.25rem; }
.service-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.badge-expanding {
  display: inline-block;
  font-size: .65rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,94,0,.4);
  background: rgba(255,94,0,.08);
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .75rem;
}
.cap-list-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cap-list { display: flex; flex-direction: column; gap: .8rem; }
.cap-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cap-dash { color: var(--primary); font-weight: 800; flex-shrink: 0; }

/* === PUBLICATIONS PAGE === */
.pub-full-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 880px;
  margin-inline: auto;
}
.pub-full-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
  transition: border-color var(--t);
}
.pub-full-row:hover { border-color: rgba(255,94,0,.3); }
.pub-main { display: flex; align-items: flex-start; gap: 1.25rem; flex: 1; min-width: 220px; }
.pub-main svg {
  width: 22px; height: 22px;
  stroke: var(--primary); stroke-width: 1.8; fill: none;
  flex-shrink: 0; margin-top: 2px;
}
.pub-meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: .3rem; }
.pub-meta strong { font-size: 1rem; color: var(--white); }
.pub-year {
  font-size: .72rem;
  padding: .15rem .55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pub-full-row p { font-size: .9rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.contact-info-card h2 { font-size: 1.35rem; margin-bottom: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item svg {
  width: 20px; height: 20px;
  stroke: var(--primary); stroke-width: 1.8; fill: none;
  flex-shrink: 0; margin-top: 2px;
}
.contact-info-item h4 { font-size: .88rem; color: var(--white); margin-bottom: .3rem; }
.contact-info-item p, .contact-info-item a {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-info-item a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}
.contact-form-card h2 { font-size: 1.35rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color var(--t);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,94,0,.5);
}
.form-group textarea { min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .about-snapshot { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 300px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pub-row { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
}
