/* ============================================================
   HexaCompute — styles
   Clean / light / minimal. Edit the variables below to rebrand.
   ============================================================ */

:root {
  --accent: #c08a3e;          /* muted honey */
  --accent-dark: #a06f2c;     /* deeper amber */
  --ink: #2b2620;             /* warm near-black */
  --muted: #7d7263;           /* warm taupe (secondary text) */
  --line: #e7e0d4;            /* warm sand border */
  --bg: #fffdf8;              /* warm off-white */
  --bg-alt: #f5efe4;          /* soft cream (alternating bg) */
  --max: 1120px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(43, 38, 32, .05), 0 8px 24px rgba(43, 38, 32, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { margin: 0; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .98rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(192, 138, 62, .28);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 600; }
.brand-mark { width: 26px; height: 26px; fill: var(--accent); }
.brand-name strong { font-weight: 800; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: var(--muted); font-weight: 500; font-size: .96rem; transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav .nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 9px 18px;
  border-radius: 9px;
}
.nav .nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s ease; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(64px, 12vw, 130px) 0 clamp(56px, 10vw, 110px);
  background:
    radial-gradient(60% 120% at 80% -10%, rgba(192, 138, 62, .14), transparent 60%),
    radial-gradient(50% 100% at 0% 0%, rgba(125, 114, 99, .10), transparent 55%);
}
.hero-inner { max-width: 760px; }
.hero .lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Why us ---------- */
.why-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-copy .section-sub { margin-bottom: 24px; }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 4px;
}
.why-stats { display: grid; gap: 18px; }
.stat {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.stat-num { display: block; font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { display: block; color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ---------- CTA ---------- */
.section-cta {
  background: linear-gradient(135deg, #2b2620, #6b4f2a);
  color: #fff;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255, 255, 255, .8); margin: 18px 0 32px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { color: var(--muted); font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0; }
  .nav-toggle { display: flex; }
  .grid-3, .steps { grid-template-columns: 1fr; }
}
