/* Anethos Ltd — shared stylesheet */

:root {
  --coral: #ff6161;
  --grey: #a6a6a6;
  --amber: #f7b93e;
  --ink: #1f2333;
  --ink-soft: #4b5163;
  --navy: #55555a;
  --navy-soft: #6b6b70;
  --paper: #ffffff;
  --paper-soft: #f6f6f8;
  --border: #e6e6ea;
  --radius: 14px;
  --max-width: 1120px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: var(--coral);
  text-decoration: none;
}

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

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 84px;
  width: auto;
}

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.nav-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #ff7a59 0%, #ff6161 45%, #f7b93e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 120px;
  max-width: 760px;
}

.hero-plain .wrap {
  max-width: var(--max-width);
}

.hero-split .wrap {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* Dashboard mockup card (client KPI preview in EasyBuild hero) */

.dash-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px 24px 26px;
  box-shadow: 0 24px 50px rgba(18, 22, 42, 0.32);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f9e56;
}

.dash-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f9e56;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(47, 158, 86, 0.18);
}

.dash-title {
  margin-bottom: 18px;
}

.dash-title strong {
  display: block;
  font-size: 1.05rem;
}

.dash-title span {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 20px;
}

.dash-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
}

.dash-value small {
  font-size: 0.95rem;
  font-weight: 700;
}

.dash-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.dash-chart {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.dash-chart-label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 56px;
}

.dash-bars div {
  flex: 1;
  background: linear-gradient(180deg, var(--amber), var(--coral));
  border-radius: 4px 4px 0 0;
}

.eyebrow {
  display: inline-block;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero-mark {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.6vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero-mark-accent {
  color: var(--amber);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero p {
  font-size: 1.15rem;
  color: #e6e7ee;
  margin: 0 0 28px;
  max-width: 60ch;
}

.hero-tag {
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-block;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
}

.btn-coral:hover {
  background: #ff4747;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--coral);
}

.btn-white:hover {
  background: #fff;
  color: #ff4747;
}

.btn-ink {
  background: var(--navy);
  color: #fff;
}

.btn-ink:hover {
  background: var(--navy-soft);
  color: #fff;
}

/* Sections */

section {
  padding: 80px 0;
}

.section-soft {
  background: var(--paper-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 14px;
}

section p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

/* Focus cards (home page) */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.focus-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 6px solid transparent;
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(18, 22, 42, 0.04);
}

.focus-card.accent-coral,
.pillar.accent-coral {
  border-top-color: var(--coral);
}

.focus-card.accent-amber,
.pillar.accent-amber {
  border-top-color: var(--amber);
}

.focus-card.accent-grey,
.pillar.accent-grey {
  border-top-color: var(--grey);
}

.focus-card .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

.dot-coral { background: var(--coral); }
.dot-amber { background: var(--amber); color: var(--ink); }

.focus-card h3 {
  font-size: 1.4rem;
  margin: 0;
}

.focus-card p {
  flex-grow: 1;
}

.focus-card .btn {
  align-self: flex-start;
}

/* Pillars / benefit grid */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 6px solid transparent;
  border-radius: var(--radius);
  padding: 28px;
}

.pillar .num {
  color: var(--amber);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

.pillar h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.pillar p {
  margin: 0;
  font-size: 0.97rem;
}

/* Two-column media section */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split.reverse .split-media {
  order: 2;
}

/* Product preview (LowEnergy.Build illustrative client-timeline card,
   modelled on the real lowenergy.build homepage hero's product visual) */

.product-preview {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(18, 22, 42, 0.1);
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
}

.product-bar {
  display: flex;
  gap: 6px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.product-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
}

.product-body {
  padding: 22px 26px 26px;
}

.product-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.stage-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.stage-row .stage {
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  flex: 1;
  color: var(--ink-soft);
}

.stage-row .stage.done {
  color: #2f9e56;
}

.stage-row .stage.active {
  color: var(--coral);
}

.stage-track {
  height: 6px;
  background: var(--paper-soft);
  border-radius: 999px;
  margin-bottom: 20px;
  overflow: hidden;
}

.stage-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, #2f9e56, var(--coral));
}

.milestone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.milestone:first-of-type {
  border-top: none;
}

.milestone .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.milestone .dot-done {
  background: #2f9e56;
}

.milestone .dot-pending {
  background: var(--coral);
}

.milestone .m-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.milestone .m-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}

.milestone .m-meta {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.milestone .badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(255, 97, 97, 0.12);
  color: var(--coral);
  font-weight: 700;
  white-space: nowrap;
}

/* CTA band */

.cta-band {
  background: linear-gradient(135deg, #ff7a59 0%, #ff6161 45%, #f7b93e 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2,
.cta-band p {
  color: #fff;
  margin: 0;
}

.cta-band p {
  color: #cfd1e0;
  margin-top: 6px;
}

/* Contact page — business cards */

.bcard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.hero .bcard-grid {
  margin-top: 36px;
}

.bcard {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bcard::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.bcard-coral::before {
  background: rgba(255, 97, 97, 0.12);
}

.bcard-amber::before {
  background: rgba(247, 185, 62, 0.18);
}

.bcard-mark {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
}

.bcard-coral .bcard-mark {
  background: var(--coral);
}

.bcard-amber .bcard-mark {
  background: var(--amber);
  color: var(--ink);
}

.bcard h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.3rem;
  color: var(--ink);
}

.bcard p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
}

.bcard-email {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.bcard-email:hover {
  color: var(--coral);
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: #cfd1e0;
  padding: 40px 0;
  margin-top: 0;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 860px) {
  .focus-grid,
  .pillar-grid,
  .hero-split .wrap,
  .bcard-grid {
    grid-template-columns: 1fr;
  }

  .dash-card {
    margin-top: 8px;
  }

  .split,
  .split.reverse .split-media {
    order: initial;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 56px;
  }

  .site-nav ul {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  section {
    padding: 56px 0;
  }

  .stage-row .stage {
    font-size: 0.68rem;
  }

  .site-footer .wrap {
    flex-direction: column;
    text-align: center;
  }
}
