/* ===========================================================
   Woodrock Solutions — dark glassy / metallic theme
   =========================================================== */

:root {
  --bg:        #0a0b0d;
  --bg-2:      #101216;
  --panel:     rgba(255, 255, 255, 0.045);
  --panel-2:   rgba(255, 255, 255, 0.07);
  --border:    rgba(255, 255, 255, 0.10);
  --border-2:  rgba(255, 255, 255, 0.18);

  --text:      #e9ebee;
  --text-dim:  #a3a9b2;
  --text-mute: #6c727b;

  --steel-1:   #f4f6f8;
  --steel-2:   #aeb4bb;
  --steel-3:   #5a6068;
  --bronze:    #d39a52;
  --bronze-lt: #f6d9a8;
  --bronze-dk: #9c6526;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1160px;
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.75);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, .brand__name { font-family: 'Sora', sans-serif; }

a { color: inherit; text-decoration: none; }

/* ---------- Ambient background ---------- */
.bg-grid,
.bg-orb,
.bg-noise { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-grid {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(211,154,82,0.10), transparent 60%),
    linear-gradient(180deg, #0c0e11 0%, #090a0c 100%);
}
.bg-grid::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 80%);
}

.bg-orb { border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.bg-orb--bronze {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(211,154,82,0.55), transparent 70%);
  animation: drift1 22s var(--ease) infinite alternate;
}
.bg-orb--steel {
  width: 460px; height: 460px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle, rgba(120,140,170,0.42), transparent 70%);
  animation: drift2 26s var(--ease) infinite alternate;
}
@keyframes drift1 { to { transform: translate(-70px, 60px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(60px, -50px) scale(1.1); } }

.bg-noise {
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
main { position: relative; z-index: 1; }

.section {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 28px;
}
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, #b9bfc6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section__sub { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Glass card ---------- */
.card {
  position: relative;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,255,255,0.35), rgba(255,255,255,0) 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: 0.6;
}

/* ---------- Buttons ---------- */
.btn {
  --b: 0;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 0.96rem;
  padding: 13px 22px; border-radius: 12px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 16px; font-size: 0.88rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  color: #1a1207;
  background: linear-gradient(180deg, var(--bronze-lt), var(--bronze));
  box-shadow: 0 10px 26px -8px rgba(211,154,82,0.6), inset 0 1px 0 rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.25);
}
.btn--primary:hover { box-shadow: 0 16px 34px -8px rgba(211,154,82,0.75), inset 0 1px 0 rgba(255,255,255,0.7); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: var(--border-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.32); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 28px;
}
.nav::before {
  content: ""; position: fixed; inset: 0 0 auto 0; height: 78px; z-index: -1;
  background: rgba(10,11,13,0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transition: opacity .3s;
}
.nav.is-scrolled::before { opacity: 1; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); transition: transform .4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.34em; color: var(--bronze); font-weight: 600; }

.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  color: var(--text-dim); font-size: 0.95rem; font-weight: 500;
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--bronze-lt), var(--bronze));
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 110px 28px 80px;
  text-align: center;
}
.hero__inner { max-width: 800px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 0 rgba(211,154,82,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(211,154,82,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(211,154,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(211,154,82,0); }
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.035em;
  margin: 26px 0 22px;
  background: linear-gradient(180deg, #ffffff 30%, #9aa1a9);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shine {
  background: linear-gradient(100deg, #c9cfd6 0%, #ffffff 20%, var(--bronze-lt) 40%, #ffffff 55%, #c9cfd6 80%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 5.5s linear infinite;
}
@keyframes shine { to { background-position: 220% center; } }

.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--text-dim); max-width: 620px; margin: 0 auto 38px;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__stats {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 64px;
}
.stat {
  min-width: 150px;
  padding: 22px 26px; border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.stat__num {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 2rem; font-weight: 700;
  background: linear-gradient(180deg, #fff, var(--bronze));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: 0.84rem; color: var(--text-mute); letter-spacing: 0.02em; }

/* ---------- Products ---------- */
.products {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.product { padding: 30px; display: flex; flex-direction: column; transition: transform .35s var(--ease), border-color .35s; }
.product:hover { transform: translateY(-6px); }
.product:hover { border-color: var(--border-2); }
.product--ghost { opacity: 0.92; }

.product__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.product__logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: #1a1207;
  background: linear-gradient(150deg, var(--bronze-lt), var(--bronze-dk));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 20px -8px rgba(211,154,82,0.6);
}
.product__logo--dim {
  color: var(--text-dim); font-size: 1.6rem;
  background: linear-gradient(150deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
}
.badge--live { color: #9fe8b4; }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 10px #3ddc84; }
.badge__dot--idle { background: var(--text-mute); box-shadow: none; }

.product__name { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
.product__tagline { color: var(--bronze); font-weight: 500; margin: 4px 0 14px; }
.product__desc { color: var(--text-dim); font-size: 0.98rem; }
.product__features { list-style: none; margin: 20px 0 4px; display: grid; gap: 10px; }
.product__features li {
  position: relative; padding-left: 26px; color: var(--text-dim); font-size: 0.95rem;
}
.product__features li::before {
  content: "◆"; position: absolute; left: 0; top: 0;
  color: var(--bronze); font-size: 0.7rem; line-height: 1.7;
}
.product__actions { margin-top: auto; padding-top: 26px; }

/* ---------- About ---------- */
.section--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about__text p { color: var(--text-dim); font-size: 1.06rem; margin-top: 18px; }
.about__text strong { color: var(--text); font-weight: 600; }
.about__values { display: grid; gap: 16px; }
.value { padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; transition: transform .3s var(--ease); }
.value:hover { transform: translateX(6px); }
.value__icon {
  font-size: 1.2rem; color: var(--bronze);
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 6px;
  background: rgba(211,154,82,0.12); border: 1px solid rgba(211,154,82,0.25);
}
.value h3 { font-size: 1.12rem; font-weight: 600; }
.value p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  padding: 52px;
}
.contact__intro p { color: var(--text-dim); margin: 16px 0 24px; }
.contact__email {
  display: inline-block; color: var(--bronze-lt); font-weight: 600;
  border-bottom: 1px solid rgba(246,217,168,0.35); padding-bottom: 2px;
  transition: border-color .2s;
}
.contact__email:hover { border-color: var(--bronze-lt); }

.contact__form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.86rem; font-weight: 500; color: var(--text-dim); letter-spacing: 0.01em; }
.field input, .field textarea {
  font-family: inherit; font-size: 0.98rem; color: var(--text);
  padding: 13px 16px; border-radius: 11px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: rgba(211,154,82,0.6);
  box-shadow: 0 0 0 3px rgba(211,154,82,0.14);
  background: rgba(0,0,0,0.35);
}
.contact__hint { font-size: 0.82rem; color: var(--text-mute); text-align: center; }

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
  background: rgba(8,9,11,0.6);
  backdrop-filter: blur(10px);
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 36px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.brand--sm .brand__name { font-size: 1rem; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--text-dim); font-size: 0.92rem; transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__copy { color: var(--text-mute); font-size: 0.86rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section--split { grid-template-columns: 1fr; gap: 36px; }
  .contact { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .section { padding: 80px 22px; }
  .hero { padding: 70px 22px 50px; }
  .contact { padding: 28px; }
  .stat { min-width: 120px; padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
