/* Rocky Hollows Inc — Static Styles */
:root {
  --bg: #0a0e1a;
  --bg-2: #0f1424;
  --card: #141a2e;
  --border: rgba(255,255,255,0.10);
  --text: #f5f7fb;
  --muted: rgba(255,255,255,0.65);
  --muted-2: rgba(255,255,255,0.45);
  --electric: #3b82f6;
  --electric-glow: #60a5fa;
  --electric-deep: #1e3a8a;
  --grad: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #6366f1 100%);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0e1a;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(30,58,138,0.55), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 20%, rgba(59,130,246,0.30), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(99,102,241,0.25), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.5;
}
h1,h2,h3,h4 { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
}
.glass-strong {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
}
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-grad { background: var(--grad); }
.shadow-glow {
  box-shadow: 0 0 60px -10px rgba(59,130,246,0.6), 0 0 100px -20px rgba(96,165,250,0.4);
}
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 0; transition: padding .4s;
}
.site-header.scrolled { padding: .75rem 0; }
.nav-pill {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .55rem .65rem .55rem 1rem;
  border-radius: 999px;
}
@media (min-width: 640px) { .nav-pill { padding: .55rem .75rem .55rem 1.5rem; } }
.site-header.scrolled .nav-pill { box-shadow: 0 0 60px -10px rgba(59,130,246,0.5); }
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.95); padding: 4px; object-fit: contain; }
.brand-text { font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.nav-links { display: none; align-items: center; gap: .15rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: .5rem .85rem; font-size: .875rem; color: rgba(255,255,255,0.7);
  border-radius: 999px; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.4rem; border-radius: 999px;
  font-size: .875rem; font-weight: 500;
  transition: transform .25s, background .25s;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 0 60px -10px rgba(59,130,246,0.6); }
.btn-primary:hover { transform: scale(1.02); }
.btn-ghost { color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }
.menu-btn {
  display: inline-flex; width: 40px; height: 40px; border-radius: 999px;
  align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

.mobile-menu {
  display: none; margin-top: .5rem; padding: .75rem; border-radius: 24px;
}
.mobile-menu.open { display: block; animation: fadeUp .5s; }
.mobile-menu a {
  display: block; padding: .85rem 1rem; font-size: .9rem;
  color: rgba(255,255,255,0.8); border-radius: 12px;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-menu .btn { margin-top: .5rem; width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
section { position: relative; }
.hero { padding: 9rem 0 5rem; position: relative; }
@media (min-width: 1024px) { .hero { padding: 11rem 0 7rem; } }
.hero-bg {
  position: absolute; inset: 0; opacity: .6; pointer-events: none;
}
.orb {
  position: absolute; border-radius: 999px; filter: blur(120px);
  pointer-events: none; animation: pulseGlow 5s ease-in-out infinite;
}
.orb-1 { top: -10rem; left: -10rem; width: 480px; height: 480px; background: rgba(59,130,246,0.30); }
.orb-2 { bottom: -10rem; right: -8rem; width: 520px; height: 520px; background: rgba(96,165,250,0.22); animation-delay: 2s; }

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
  position: relative;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; } }

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 999px; font-size: .75rem; font-weight: 500;
}
.chip svg { width: 14px; height: 14px; color: var(--electric-glow); }
.eyebrow { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--electric-glow); }

h1.hero-title { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; margin-top: 1.2rem; }
.hero-desc { margin-top: 1.25rem; font-size: 1.05rem; color: var(--muted); max-width: 36rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-controls { margin-top: 2.25rem; display: flex; align-items: center; gap: .75rem; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); }
.dots { margin-left: .75rem; display: flex; gap: .375rem; align-items: center; }
.dot { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.2); width: 16px; transition: all .3s; cursor: pointer; }
.dot.active { width: 32px; background: var(--electric-glow); }

.hero-visual { position: relative; }
.hero-image {
  position: relative; border-radius: 2rem; overflow: hidden;
  aspect-ratio: 4/5;
}
@media (min-width: 640px) { .hero-image { aspect-ratio: 5/6; } }
.hero-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s;
}
.hero-image img.active { opacity: 1; }
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(10,14,26,0.6), transparent, transparent);
}

.float-card {
  position: absolute; border-radius: 1rem; padding: 1.1rem;
  animation: floatY 6s ease-in-out infinite;
}
.float-card.tl { top: -1rem; left: -.5rem; width: 220px; }
@media (min-width: 640px) { .float-card.tl { left: -2.5rem; width: 260px; padding: 1.25rem; } }
.float-card.br { bottom: -1rem; right: .5rem; width: 200px; animation-delay: 1.5s; }
@media (min-width: 640px) { .float-card.br { right: -1.5rem; width: 224px; padding: 1.25rem; } }
.float-pill {
  position: absolute; bottom: 3rem; left: -.5rem;
  display: flex; align-items: center; gap: .75rem;
  padding: .5rem 1.25rem .5rem .75rem; border-radius: 999px;
  animation: floatY 6s ease-in-out infinite; animation-delay: .7s;
}
@media (min-width: 640px) { .float-pill { bottom: 5rem; left: -2rem; } }

.live-dot { display: inline-flex; align-items: center; gap: .35rem; font-size: .75rem; color: var(--electric-glow); }
.live-dot .pulse {
  position: relative; display: inline-flex; height: 8px; width: 8px;
}
.live-dot .pulse::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: var(--electric-glow); animation: pulseGlow 2s infinite;
}
.live-dot .pulse::after {
  content: ""; position: relative; height: 8px; width: 8px;
  border-radius: 999px; background: var(--electric-glow);
}
.metric-val { font-size: 1.65rem; font-weight: 700; margin-top: .15rem; }
.bar { margin-top: .75rem; height: 6px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.bar > div { height: 100%; width: 75%; background: var(--grad); border-radius: 999px; }
.bars { margin-top: .5rem; display: flex; align-items: flex-end; gap: 3px; height: 32px; }
.bars span { flex: 1; background: var(--grad); border-radius: 2px; }
.tag-icon { width: 32px; height: 32px; border-radius: 999px; background: var(--grad); display: inline-flex; align-items: center; justify-content: center; }
.tag-icon svg { width: 16px; height: 16px; color: #fff; }
.tag-mini { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.6); }

/* ---------- MARQUEE ---------- */
.platforms {
  padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.platforms-eyebrow {
  text-align: center; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 4rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Space Grotesk'; font-size: 1.35rem; font-weight: 600;
  color: rgba(255,255,255,0.5); white-space: nowrap; transition: color .25s;
}
.marquee-track span:hover { color: #fff; }

/* ---------- SECTION ---------- */
.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section-head { text-align: center; max-width: 48rem; margin: 0 auto; }
.section-head h2 { font-size: clamp(1.85rem, 4vw, 3rem); font-weight: 700; margin-top: .75rem; }
.section-head p { margin-top: 1rem; color: var(--muted); }

/* ---------- CARDS GRID ---------- */
.cards { display: grid; gap: 1rem; margin-top: 3.5rem; }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-3 { grid-template-columns: repeat(1, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
.cards.cols-5 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .cards.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .cards.cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .cards.cols-5 { grid-template-columns: repeat(5, 1fr); }
}

.card {
  position: relative; border-radius: 1rem; padding: 1.5rem; height: 100%;
  transition: transform .5s, box-shadow .5s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 0 60px -10px rgba(59,130,246,0.5); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px -5px rgba(59,130,246,0.5); margin-bottom: 1rem;
  transition: transform .3s;
}
.card:hover .card-icon { transform: scale(1.08); }
.card-icon svg { width: 20px; height: 20px; color: #fff; }
.card h3 { font-size: 1rem; font-weight: 600; }
.card p { margin-top: .4rem; font-size: .875rem; color: rgba(255,255,255,0.65); }
.card .num { font-family: 'Space Grotesk'; font-size: 1.75rem; font-weight: 700; color: rgba(255,255,255,0.1); }
.card-stat .val { font-size: 1.75rem; font-weight: 700; }
.card-stat .lbl { margin-top: .25rem; font-size: .75rem; color: var(--muted); }

/* ---------- ABOUT / SPLIT ---------- */
.split {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.check-list { margin-top: 2rem; display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li {
  list-style: none; display: flex; align-items: flex-start; gap: .65rem;
  font-size: .875rem; color: rgba(255,255,255,0.8);
}
.check-list .tick {
  margin-top: 4px; width: 16px; height: 16px; border-radius: 999px;
  background: var(--grad); display: inline-flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.check-list .tick svg { width: 10px; height: 10px; color: #fff; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid; gap: 1.25rem; margin-top: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  border-radius: 1rem; padding: 1.75rem; display: flex; flex-direction: column; height: 100%;
  transition: transform .5s, box-shadow .5s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 0 60px -10px rgba(59,130,246,0.5); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; color: var(--electric-glow); fill: var(--electric-glow); }
.t-card p { color: rgba(255,255,255,0.85); flex: 1; line-height: 1.6; }
.t-author { margin-top: 1.5rem; display: flex; align-items: center; gap: .75rem; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 999px; background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk'; font-weight: 600;
}
.t-name { font-size: .875rem; font-weight: 600; }
.t-role { font-size: .75rem; color: var(--muted); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; gap: 1.5rem; margin-top: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem;
  border-radius: 1rem; transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 0 60px -10px rgba(59,130,246,0.4); }
.contact-card .card-icon { margin: 0; width: 44px; height: 44px; }
.contact-card .ic-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.55); }
.contact-card .ic-val { font-size: .875rem; font-weight: 500; }
.contact-info-card {
  border-radius: 1rem; padding: 1.25rem; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}

.contact-form {
  border-radius: 1.5rem; padding: 1.5rem;
  box-shadow: 0 0 60px -10px rgba(59,130,246,0.5);
}
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { margin-top: 0; }
.field label {
  display: block; font-size: .7rem; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,0.55); margin-bottom: .5rem;
}
.field input, .field textarea {
  width: 100%; padding: .75rem 1rem; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: .875rem;
  outline: none; transition: box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 2px rgba(59,130,246,0.5); }
.field textarea { resize: vertical; min-height: 120px; }
.form-foot { margin-top: 1.5rem; }
.fineprint { margin-top: .75rem; font-size: .75rem; color: rgba(255,255,255,0.45); }

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 2.5rem; margin-top: 4rem;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(59,130,246,0.6), transparent);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.site-footer ul a { font-size: .875rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.site-footer ul a:hover { color: #fff; }
.footer-brand p { margin-top: 1rem; font-size: .875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.social { margin-top: 1.25rem; display: flex; gap: .5rem; }
.social a {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.social a:hover { background: rgba(59,130,246,0.2); color: var(--electric-glow); }
.social svg { width: 16px; height: 16px; }
.footer-info li { display: flex; align-items: flex-start; gap: .5rem; }
.footer-info svg { width: 16px; height: 16px; color: var(--electric-glow); flex-shrink: 0; margin-top: 2px; }
.copyright {
  margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: .75rem; font-size: .75rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) { .copyright { flex-direction: row; } }
.copyright a { color: inherit; transition: color .2s; }
.copyright a:hover { color: #fff; }
.copy-links { display: flex; gap: 1.25rem; }

/* ---------- PROJECTS GRID ---------- */
.projects-grid {
  display: grid; gap: 1.25rem; margin-top: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: 1fr 1fr 1fr; } }
.project {
  border-radius: 1rem; overflow: hidden; position: relative;
  transition: transform .5s, box-shadow .5s;
}
.project:hover { transform: translateY(-4px); box-shadow: 0 0 60px -10px rgba(59,130,246,0.5); }
.project-img { aspect-ratio: 4/3; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.project:hover .project-img img { transform: scale(1.06); }
.project-body { padding: 1.25rem 1.5rem 1.5rem; }
.project-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--electric-glow); }
.project-body h3 { margin-top: .35rem; font-size: 1.1rem; font-weight: 600; }
.project-body p { margin-top: .4rem; font-size: .875rem; color: var(--muted); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- ANIMATIONS ---------- */
@keyframes pulseGlow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
