/* Gorilla Garage Studios visual system */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  /* GGS Visual Design Standard core palette aliases */
  --color-bg: #0a0a0a;
  --color-surface: #171717;
  --color-elevated: #262626;
  --color-border: #2e2e2e;
  --color-text: #f5f5f5;
  --color-muted: #a3a3a3;
  --color-gold: #ffb800;
  --color-interaction-blue: #75d0ff;
  --color-success: #22c55e;
  --color-warning: #f59e0b;

  --bg-color: #0a0a0a;
  --bg-deep: #050505;
  --surface-color: #171717;
  --surface-elevated: #262626;
  --surface-soft: #111111;
  --gold-color: #ffb800;
  --gold-hover: #ffd15c;
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --text-dim: #737373;
  --border-color: #2e2e2e;
  --border-strong: #424242;
  --border-radius-sm: 6px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --max-width-content: 1240px;
  --max-width-text: 720px;
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
}

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

html {
  background: var(--bg-color);
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #050505 0%, #0a0a0a 44%, #090909 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08) 58%, transparent 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.04;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p {
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
}

a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

a:hover {
  color: var(--gold-hover);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 32px;
}

.text-container {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(10, 10, 10, 0.9));
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo-img-main {
  display: block;
  width: clamp(190px, 19vw, 255px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.5));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 36px 0 32px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--gold-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  z-index: 120;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: #0b0b0b;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  color: var(--gold-color);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown a::after {
  content: "->";
  color: currentColor;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: #151515;
  color: var(--gold-color);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: var(--surface-color);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.btn::after {
  content: "->";
  margin-left: 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--gold-color);
  border-color: rgba(255, 184, 0, 0.82);
  box-shadow: none;
  color: #090909;
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: #050505;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #0b0b0b;
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: #151515;
  border-color: rgba(255, 184, 0, 0.62);
  color: var(--gold-color);
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.section {
  position: relative;
  padding: clamp(76px, 8vw, 108px) 0;
}

.section-tight {
  padding: clamp(48px, 5.6vw, 72px) 0;
}

.compact-hero-section {
  padding: clamp(38px, 4.8vw, 58px) 0;
  border-bottom: 1px solid var(--border-color);
  background: #0d0d0d;
}

.catalog-hero {
  min-height: clamp(430px, 48vw, 560px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: #0b0b0b;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 38%, rgba(5, 5, 5, 0.24) 66%, rgba(5, 5, 5, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.06) 62%, rgba(5, 5, 5, 0.5) 100%),
    url("assets/ggs-products-hero-1.png");
  background-position:
    center center,
    center center,
    right 8% center;
  background-size:
    cover,
    cover,
    auto 92%;
  background-repeat: no-repeat;
}

.catalog-hero .hero-content {
  max-width: 620px;
  padding-top: clamp(12px, 2.4vw, 34px);
}

.catalog-hero .hero-content p {
  color: rgba(221, 231, 242, 0.86);
}

.page-header-section {
  padding: clamp(48px, 5.4vw, 70px) 0;
  border-bottom: 1px solid var(--border-color);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
}

.compact-cta-section {
  padding: clamp(44px, 5vw, 66px) 0;
}

.section-alt {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.hero-section {
  min-height: clamp(620px, 68vh, 720px);
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.82) 32%, rgba(5, 5, 5, 0.48) 58%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.08) 58%, rgba(5, 5, 5, 0.62) 100%),
    url("assets/ggs-hero-background-1.png") center center / cover no-repeat,
    #0a0a0a;
  border-bottom: 1px solid var(--border-color);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 184, 0, 0.16), transparent 30%),
    radial-gradient(circle at 72% 48%, rgba(255, 184, 0, 0.1), transparent 28%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 64%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 5vw, 78px);
}

.compact-hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
}

.compact-hero-catalog {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  align-items: start;
  min-height: clamp(330px, 39vw, 430px);
  gap: 22px;
}

.product-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.36fr);
}

.compact-hero-content {
  gap: 18px;
}

.compact-hero-content h1,
.product-page-title,
.page-header h1 {
  font-size: clamp(2.55rem, 4.8vw, 4.05rem);
  letter-spacing: 0.015em;
  text-transform: none;
}

.section-tight h2,
.section-tight h3,
.compact-cta-section h2,
.page-header-section h2 {
  letter-spacing: 0.015em;
  text-transform: none;
}

.section-tight h2,
.compact-cta-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.section-tight h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
}

.compact-section-heading {
  margin-bottom: 28px;
}

.compact-heading-row {
  margin-bottom: 24px;
}

.page-header {
  max-width: 820px;
}

.support-intro-section {
  padding: clamp(34px, 4.4vw, 56px) 0;
}

.support-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
}

.support-intro-copy {
  max-width: 720px;
}

.support-intro-section .page-header h1 {
  font-size: clamp(2.25rem, 4vw, 3.45rem);
}

.support-brand-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background: #141414;
}

.support-brand-logo {
  width: min(100%, 220px);
  height: auto;
}

.support-focus-list {
  display: grid;
  gap: 8px;
}

.support-focus-list span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-brand-panel p {
  font-size: 0.94rem;
}

.contact-intro-section {
  padding-bottom: clamp(28px, 3.6vw, 44px);
}

.page-header h1 {
  margin-top: 12px;
}

.page-header p {
  max-width: 680px;
  margin-top: 14px;
}

.page-header .hero-buttons {
  margin-top: 18px;
}

.hero-section .hero-grid {
  min-height: clamp(620px, 68vh, 720px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-title-main {
  margin: 0 0 2px;
  font-size: clamp(4.25rem, 7.8vw, 7.05rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.025em;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.04), 0 18px 32px rgba(0, 0, 0, 0.5);
}

.hero-title-main span {
  display: block;
}

.word-gorilla,
.word-studios {
  color: var(--text-primary);
}

.word-garage {
  color: var(--gold-color);
  text-shadow: 0 0 18px rgba(255, 184, 0, 0.14);
}

.word-studios {
  letter-spacing: 0.105em;
}

.hero-lede {
  position: relative;
  max-width: 520px;
  padding-top: 22px;
  color: #d2d2d2;
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-lede::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 3px;
  background: var(--gold-color);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 2px;
}

.hero-small-line {
  max-width: 510px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: clamp(440px, 50vw, 620px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual-background {
  pointer-events: none;
}

.hero-visual-background::before,
.hero-visual-background::after {
  display: none;
}

.hero-gorilla-transparent {
  width: min(92%, 640px);
  max-height: min(610px, 72vh);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.82)) drop-shadow(0 0 18px rgba(255, 184, 0, 0.08));
  transform: translate(2%, -1%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 2% 6% 0;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 184, 0, 0.07), transparent 34%);
  background-size: 36px 36px, 36px 36px, 100% 100%;
  opacity: 0.72;
  mask-image: radial-gradient(circle at 55% 52%, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.92) 62%, transparent 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 1%;
  top: 17%;
  width: 31%;
  height: 52%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 184, 0, 0.16) 0 2px, transparent 2px 100%),
    linear-gradient(rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%);
  background-size: 100% 38px, 100% 38px;
  opacity: 0.22;
  filter: blur(0.2px);
}

.hero-gorilla-head {
  width: min(86%, 560px);
  height: auto;
  border-radius: 8px;
  opacity: 0.98;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 28px rgba(255, 184, 0, 0.08));
  transform: translateX(-1%);
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.hero-gorilla-head:hover {
  transform: translateX(-1%) translateY(-2px);
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 30px rgba(255, 184, 0, 0.12));
}

.hero-tagline,
.section-kicker {
  display: inline-block;
  color: var(--gold-color);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading-row h2 {
  margin-top: 12px;
}

.section-heading-row p {
  max-width: 520px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.catalog-grid {
  margin-top: 0;
}

.catalog-quick-note,
.preview-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #141414;
}

.catalog-quick-note {
  align-self: start;
  justify-self: start;
  width: min(100%, 980px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.catalog-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.catalog-mini-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 188px;
  min-height: 48px;
  gap: 14px;
  padding: 13px 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--border-radius-sm);
  background: #0b0b0b;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.catalog-mini-list a:hover {
  background: #151515;
  border-color: rgba(255, 184, 0, 0.62);
  color: var(--gold-color);
  transform: translateY(-1px);
}

.catalog-mini-list a::after {
  content: "->";
  margin-left: 18px;
  color: currentColor;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.preview-strip,
.availability-grid,
.split-content-grid {
  display: grid;
  gap: 20px;
}

.preview-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-tile {
  min-height: 132px;
  padding: 22px;
}

.preview-tile::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  height: 3px;
  background: var(--gold-color);
  opacity: 0.72;
}

.preview-tile span {
  display: block;
  margin-top: 14px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.preview-tile p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.availability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.availability-grid .principle-card {
  text-align: left;
}

.availability-grid .principle-card h2 {
  margin: 12px 0 14px;
}

.availability-grid .principle-card p + p {
  margin-top: 10px;
}

.split-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact-action-section {
  border-top: 1px solid var(--border-color);
}

.contact-side-stack {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  padding: 24px;
  text-align: left;
}

.contact-product-grid {
  gap: 16px;
}

.contact-product-card {
  gap: 14px;
  padding: 22px;
}

.section-compact-note {
  padding: clamp(42px, 4.8vw, 60px) 0;
}

.compact-roadmap-note h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  text-transform: none;
}

.home-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card,
.principle-card,
.form-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
}

.product-card {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--transition-normal), transform var(--transition-normal), background var(--transition-normal);
}

.product-card::before {
  display: none;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 184, 0, 0.54);
  background: #181818;
}

.product-card:hover::before {
  opacity: 0;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-card-title {
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.product-card-media {
  display: grid;
  place-items: end center;
  min-height: 240px;
  padding: 18px 16px 0;
  margin: 2px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--border-radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.32)),
    #101010;
}

.product-card-media .ggs-phone-mockup {
  max-width: 138px;
  margin-bottom: -18px;
}

.product-screenshot {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.58);
}

.product-card-media .product-screenshot {
  max-width: 136px;
  margin-bottom: -18px;
  border-radius: 18px;
}

.home-product-card {
  min-height: 360px;
}

.home-product-card .product-card-title {
  font-size: clamp(1.36rem, 1.62vw, 1.64rem);
  line-height: 1;
  white-space: nowrap;
}

.home-product-card .btn {
  align-self: flex-start;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gold-color);
}

.home-product-card .btn:hover {
  color: var(--gold-hover);
  transform: none;
}

.product-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.product-card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.94rem;
}

.product-card-bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 10px;
  background: var(--gold-color);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: #111111;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge.badge-gold {
  border-color: rgba(255, 184, 0, 0.46);
  background: #111111;
  color: var(--gold-color);
}

.studio-values-band {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.04), transparent 24%),
    #141414;
}

.studio-value-intro,
.studio-value {
  padding: clamp(22px, 3vw, 36px);
}

.studio-value-intro h2 {
  margin-top: 12px;
  font-size: clamp(1.75rem, 2.25vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0.025em;
}

.studio-value {
  border-left: 1px solid var(--border-color);
  text-align: center;
}

.studio-value h3 {
  margin: 14px 0 10px;
  font-size: 1.45rem;
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold-color);
  border-radius: 50%;
  color: var(--gold-color);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.principle-card {
  padding: 24px;
}

.principle-card h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ggs-phone-mockup {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.58));
}

.product-hero-mockup {
  justify-content: center;
}

.product-hero-utility .product-hero-mockup .ggs-phone-mockup {
  max-width: 160px;
}

.product-hero-utility .product-hero-mockup .product-screenshot {
  max-width: 172px;
}

.product-hero-flagship .product-hero-mockup .ggs-phone-mockup {
  max-width: 182px;
}

.preview-image {
  display: grid;
  place-items: center;
  margin: 12px 0 16px;
  min-height: 250px;
}

.preview-image .product-screenshot {
  width: auto;
  max-width: 100%;
  max-height: 260px;
  border-radius: 20px;
}

.screenshot-tile {
  display: flex;
  flex-direction: column;
}

.about-hero-logo {
  width: min(100%, 280px);
  height: auto;
  margin-bottom: 6px;
}

.form-card {
  max-width: 580px;
  margin: 40px auto 0;
  padding: 34px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-group label {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-control {
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: #0d0d0d;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: rgba(255, 184, 0, 0.72);
  background: #111111;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-color);
}

.form-feedback {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-feedback.success {
  display: block;
  border: 1px solid rgba(255, 184, 0, 0.62);
  background: rgba(255, 184, 0, 0.08);
  color: var(--gold-color);
}

.launch-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(340px, 0.9fr);
  gap: 26px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #141414;
}

.launch-strip-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 2rem;
}

.launch-strip-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.launch-strip-form .form-control {
  min-width: 0;
}

.site-footer {
  background:
    linear-gradient(180deg, #090909 0%, #050505 100%);
  border-top: 1px solid var(--border-color);
  padding: 58px 0 30px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr);
  gap: 44px;
  margin-bottom: 38px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  width: min(100%, 220px);
  height: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav h4 {
  margin-bottom: 7px;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.footer-nav a {
  color: var(--text-secondary);
}

.footer-nav a:hover {
  color: var(--gold-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.footer-note {
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-section h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.55rem;
}

.legal-section h3 {
  margin-top: 8px;
  color: var(--gold-color);
  font-size: 1.15rem;
}

.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  color: var(--text-secondary);
}

.placeholder-text {
  display: inline-block;
  padding: 2px 7px;
  border: 1px dashed rgba(255, 184, 0, 0.7);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 184, 0, 0.06);
  color: var(--gold-color);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .header-container {
    min-height: 84px;
  }

  .nav-menu {
    gap: 22px;
  }

  .nav-link {
    padding: 30px 0 27px;
  }

  .nav-link::after {
    bottom: 20px;
  }

  .hero-section,
  .hero-section .hero-grid {
    min-height: auto;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.5) 34%, rgba(5, 5, 5, 0.92) 66%, #0a0a0a 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.05) 100%),
      url("assets/ggs-hero-background-1.png") center top / cover no-repeat,
      #0a0a0a;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .compact-hero,
  .compact-hero-catalog,
  .support-intro-grid,
  .product-hero-grid,
  .preview-strip,
  .availability-grid,
  .split-content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .catalog-quick-note {
    max-width: 560px;
  }

  .hero-section .hero-grid {
    padding-top: 68px;
    padding-bottom: 52px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .hero-gorilla-head {
    width: min(72vw, 500px);
  }

  .hero-gorilla-transparent {
    width: min(76vw, 520px);
    max-height: 420px;
    transform: translateY(-1%);
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .studio-values-band,
  .section-heading-row,
  .launch-strip {
    grid-template-columns: 1fr;
  }

  .studio-value {
    border-left: 0;
    border-top: 1px solid var(--border-color);
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .spotlight-grid .mockup-container {
    order: -1;
  }

  .product-hero-mockup {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 20px;
  }

  .site-header {
    position: sticky;
  }

  .header-container {
    min-height: 72px;
  }

  .logo-img-main {
    width: auto;
    height: 46px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px 20px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-item {
    position: static;
  }

  .nav-item .nav-link {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 0 10px 12px;
    border-left: 2px solid rgba(255, 184, 0, 0.38);
    border-radius: 0;
    font-size: 0.86rem;
  }

  .nav-link::after {
    bottom: 12px;
    right: auto;
    width: 44px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .hero-section .hero-grid {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.52) 30%, rgba(5, 5, 5, 0.96) 54%, #0a0a0a 100%),
      url("assets/ggs-hero-background-1.png") 55% top / cover no-repeat,
      #0a0a0a;
  }

  .hero-visual {
    min-height: clamp(200px, 58vw, 250px);
  }

  .hero-gorilla-head {
    width: min(86vw, 390px);
  }

  .hero-gorilla-transparent {
    width: min(88vw, 340px);
    max-height: 245px;
    transform: translateX(2%);
  }

  .hero-title-main {
    font-size: clamp(3rem, 15.2vw, 4.4rem);
  }

  .hero-content {
    gap: 18px;
  }

  .word-studios {
    letter-spacing: 0.065em;
  }

  .hero-buttons,
  .launch-strip-form {
    width: 100%;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section-tight,
  .compact-hero-section,
  .page-header-section,
  .compact-cta-section {
    padding: 36px 0;
  }

  .compact-hero-content {
    gap: 14px;
  }

  .catalog-quick-note {
    padding: 18px;
  }

  .compact-hero-content h1,
  .product-page-title,
  .page-header h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .section-tight h2,
  .compact-cta-section h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .product-hero-utility .product-hero-mockup .ggs-phone-mockup,
  .product-hero-flagship .product-hero-mockup .ggs-phone-mockup {
    max-width: 118px;
  }

  .support-brand-panel {
    display: none;
  }

  .home-product-card .product-card-title {
    white-space: normal;
  }

  .product-hero-utility .product-hero-mockup .product-screenshot {
    max-width: 120px;
  }

  .preview-image {
    min-height: auto;
  }

  .preview-image .product-screenshot {
    max-height: 230px;
  }

  .preview-tile {
    min-height: auto;
  }

  .product-card,
  .principle-card,
  .form-card,
  .launch-strip {
    padding: 22px;
  }

  .product-card-header {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
