/* WyldWare Static Site Styles
   Based on wyldware.com brand colors: #027ABB (primary), #015EA0 (secondary), #18181B (dark), #3F3F46 (gray) */

@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --primary:    #027ABB;
  --secondary:  #015EA0;
  --accent:     #4286F5;
  --dark:       #18181B;
  --darker:     #0F0F12;
  --gray:       #3F3F46;
  --gray-light: #E4E4E7;
  --white:      #FFFFFF;
  --offwhite:   #F6FEFC;
  --body-font: 'Lato', sans-serif;
  --heading-font: 'Inconsolata', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.3;
  color: var(--dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent); }

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

/* ─── Layout Utilities ───────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding: 4rem 0;
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--gray-light);
}

.section--darker {
  background: var(--darker);
  color: var(--white);
}

.section--darker h2 {
  color: var(--white);
}

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1.3;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-light);
  border-color: var(--gray-light);
  color: var(--dark);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ─── Navigation ────────────────────────────────── */
.site-nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--primary);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-brand:hover { color: var(--accent); }
.nav-brand img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-links a {
  color: var(--gray-light);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a.active {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .mobile-menu-btn { display: block; }
  .hero > .container { flex-direction: column; }
  .hero__overlay { width: 80%; max-width: 320px; margin-top: 2rem; }
}

/* ─── Hero ──────────────────────────────────────── */
.hero {
  background: var(--dark);
  background-image: url('../media/bg-3.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,18,0.94) 0%, rgba(15,15,18,0.85) 50%, rgba(15,15,18,0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 45%;
  max-width: 480px;
  align-self: center;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  opacity: 0.88;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  max-width: 640px;
}

.hero__eyebrow {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero h1 span {
  color: var(--primary);
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__stats {
  margin-top: 4rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  color: rgba(228,228,231,0.6);
}

/* ─── Value Props Grid ──────────────────────────── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.prop-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.prop-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.prop-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.prop-card__title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.prop-card__body {
  font-size: 0.9rem;
  color: var(--gray-light);
  opacity: 0.85;
}

/* ─── Feature Blocks ─────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}
.feature-row--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row--reverse { direction: ltr; }
}

.feature-row__label {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-row h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-row p {
  color: #555;
  margin-bottom: 1.25rem;
}

.feature-row__visual {
  background: var(--dark);
  border-radius: 8px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.feature-row__visual pre {
  font-family: var(--heading-font);
  color: var(--gray-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ─── Hosting Tiers / Pricing ───────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tier-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.tier-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(2,122,187,0.15);
  transform: translateY(-4px);
}

.tier-card--featured {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(2,122,187,0.12);
}

.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

.tier-card__name {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tier-card__tagline {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.25rem;
}

.tier-card__price {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.tier-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.tier-card__divider {
  height: 1px;
  background: var(--gray-light);
  margin: 1.25rem 0;
}

.tier-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.tier-card__features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tier-card__features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── PayPal Buttons ──────────────────────────────── */
.paypal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

.paypal-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.paypal-btn {
  display: inline-block;
  background: #FFC439;
  color: #003087;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #003087;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.paypal-btn:hover {
  background: #FFD966;
  color: #003087;
}

.paypal-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.75rem;
  text-align: center;
}

/* ─── About / Team ──────────────────────────────── */
.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--offwhite);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

@media (max-width: 600px) {
  .founder-card { grid-template-columns: 1fr; }
}

.founder-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.founder-card__name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.founder-card__role {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.founder-card__bio {
  font-size: 0.95rem;
  color: #555;
}

/* ─── Contact Form ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group label .required {
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--body-font);
  font-size: 0.95rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info__block {
  margin-bottom: 2rem;
}

.contact-info__block h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info__block p {
  font-size: 0.9rem;
  color: #555;
}

.contact-info__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-info__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.contact-info__social a:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ─── Quote / Testimonial ────────────────────────── */
.quote-block {
  background: var(--darker);
  border-left: 4px solid var(--primary);
  padding: 2.5rem;
  border-radius: 0 8px 8px 0;
  margin: 3rem 0;
}

.quote-block blockquote {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-block cite {
  font-size: 0.85rem;
  color: var(--primary);
  font-style: normal;
}

/* ─── Footer ────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand__name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-col__heading {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--gray-light);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ─── Page Headers ──────────────────────────────── */
.page-header {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 3rem;
  border-bottom: 3px solid var(--primary);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header__sub {
  color: var(--gray-light);
  opacity: 0.7;
  font-size: 1rem;
  max-width: 560px;
}

/* ─── Game Types Grid ────────────────────────────── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.game-tag {
  background: rgba(2,122,187,0.1);
  border: 1px solid rgba(2,122,187,0.3);
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.game-tag span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  margin-top: 0.25rem;
}

/* ─── Misc ──────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: #666; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.eyebrow {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--primary);
}