/* =====================================================
   Unjaded Digital Products — site styles
   Palette drawn from the Unjaded logo:
   steel blue-gray + muted gold on deep slate
   ===================================================== */

:root {
  --bg: #10151c;
  --bg-alt: #161d26;
  --surface: #1d2632;
  --line: #2c3846;
  --text: #dde4ec;
  --text-dim: #9aa7b5;
  --steel: #7d93ab;
  --steel-bright: #a9bdd2;
  --gold: #c9b568;
  --gold-bright: #e0cd85;
  --radius: 12px;
  --container: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.accent { color: var(--gold-bright); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #191919;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 181, 104, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--steel-bright);
  border: 1px solid var(--steel);
}
.btn-ghost:hover { box-shadow: 0 6px 20px rgba(125, 147, 171, 0.2); }
.btn-small { padding: 0.5rem 1.2rem; font-size: 0.9rem; }

/* ===== Navigation ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 21, 28, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img { height: 34px; width: auto; }
.nav-brand em { font-style: normal; color: var(--steel); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a:not(.btn) {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.nav-links a:not(.btn):hover { color: var(--text); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(125, 147, 171, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 181, 104, 0.07), transparent);
  padding: 6rem 0 5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero .lead {
  color: var(--text-dim);
  font-size: 1.12rem;
  margin: 1.25rem 0 2rem;
  max-width: 560px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

/* ===== Trust bar ===== */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.trustbar-inner div { display: flex; flex-direction: column; }
.trustbar-inner strong { color: var(--gold-bright); font-size: 0.95rem; }
.trustbar-inner span { color: var(--text-dim); font-size: 0.85rem; }

/* ===== Sections ===== */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }

/* ===== Service cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--steel); }

.card-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1rem; }

.card ul { list-style: none; }
.card ul li {
  color: var(--steel-bright);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.card ul li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.product:hover { transform: translateY(-4px); border-color: var(--gold); }

.product-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold-bright);
  background: rgba(201, 181, 104, 0.12);
  border: 1px solid rgba(201, 181, 104, 0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.product p { color: var(--text-dim); font-size: 0.92rem; }
.product-more { border-style: dashed; }

/* ===== Process steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.step-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: center;
}

.about-photo img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.about-title {
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-copy p:not(.eyebrow):not(.about-title) {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.about-facts {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.about-facts li { display: flex; flex-direction: column; }
.about-facts strong { font-size: 1.5rem; color: var(--gold-bright); }
.about-facts span { font-size: 0.82rem; color: var(--text-dim); }

.about-copy .btn { margin-top: 0.75rem; }

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-direct {
  color: var(--text-dim);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel-bright);
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}
.footer-brand img { height: 28px; width: auto; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-dim); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-bright); }

.footer-copy { color: var(--text-dim); font-size: 0.82rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-logo { display: flex; justify-content: center; }
  .hero-logo img { max-width: 300px; }

  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { display: flex; justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; }
}

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

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a { display: inline-block; padding: 0.8rem 1.5rem; }
  .nav-links .btn { margin: 0.5rem auto; }
}
