/*
Theme Name: Shopwerks Beta
Template: twentytwentyfive
Author: Shopwerks
Description: Beta landing page theme for Shopwerks.
Version: 0.1.0
*/

:root {
  --sw-bg: #07100c;
  --sw-bg-2: #101817;
  --sw-panel: #ffffff;
  --sw-ink: #0d1714;
  --sw-muted: #5d6a66;
  --sw-green: #39d87b;
  --sw-blue: #4aa8ff;
  --sw-amber: #ffbd5a;
  --sw-line: rgba(255, 255, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--sw-ink);
  background: #f6f8f5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.sw-page * {
  box-sizing: border-box;
}

.sw-page a {
  color: inherit;
}

.sw-hero {
  min-height: 84vh;
  display: flex;
  align-items: stretch;
  position: relative;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 10, 8, 0.96) 0%, rgba(4, 10, 8, 0.86) 39%, rgba(4, 10, 8, 0.38) 100%),
    url("./assets/serviceMgmt.png");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.sw-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 54px;
  display: grid;
  align-content: space-between;
  gap: 48px;
}

.sw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sw-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.sw-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.sw-nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sw-nav-links a,
.sw-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.sw-nav-links a {
  color: rgba(255,255,255,.82);
}

.sw-nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.sw-hero-copy {
  max-width: 710px;
  padding-bottom: 18px;
}

.sw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c8f8da;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.sw-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sw-green);
  box-shadow: 0 0 18px rgba(57,216,123,.85);
}

.sw-hero h1 {
  margin: 18px 0 16px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.sw-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.6;
}

.sw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sw-btn-primary {
  background: var(--sw-green);
  color: #07100c;
}

.sw-btn-secondary {
  color: #fff;
  border: 1px solid var(--sw-line);
  background: rgba(255,255,255,.08);
}

.sw-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sw-line);
  background: var(--sw-line);
}

.sw-stat {
  min-height: 92px;
  padding: 16px;
  background: rgba(6, 16, 12, .72);
  backdrop-filter: blur(8px);
}

.sw-stat strong {
  display: block;
  font-size: 22px;
  color: #fff;
}

.sw-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.35;
}

.sw-section {
  padding: 78px 0;
}

.sw-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sw-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.sw-section h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.02;
}

.sw-section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--sw-muted);
  line-height: 1.55;
}

.sw-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sw-module {
  border: 1px solid #dfe6e1;
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  min-height: 180px;
}

.sw-module .sw-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #07100c;
  font-weight: 900;
}

.sw-module:nth-child(1) .sw-icon { background: var(--sw-green); }
.sw-module:nth-child(2) .sw-icon { background: var(--sw-blue); }
.sw-module:nth-child(3) .sw-icon { background: var(--sw-amber); }
.sw-module:nth-child(4) .sw-icon { background: #d8a2ff; }

.sw-module h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.sw-module p {
  margin: 0;
  color: var(--sw-muted);
  line-height: 1.5;
}

.sw-product-band {
  background: var(--sw-bg);
  color: #fff;
}

.sw-screens {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.sw-screen-main,
.sw-screen-stack img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 60px rgba(0,0,0,.38);
  background: #0b1210;
}

.sw-screen-main {
  min-height: 420px;
  object-fit: cover;
  object-position: left top;
}

.sw-screen-stack {
  display: grid;
  gap: 18px;
}

.sw-screen-stack img {
  height: 201px;
  object-fit: cover;
  object-position: left top;
}

.sw-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sw-step {
  background: #fff;
  border: 1px solid #dfe6e1;
  border-radius: 8px;
  padding: 20px;
}

.sw-step b {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f7ed;
  color: #0b6e35;
  margin-bottom: 14px;
}

.sw-step h3 {
  margin: 0 0 8px;
}

.sw-step p {
  margin: 0;
  color: var(--sw-muted);
  line-height: 1.55;
}

.sw-cta {
  background: #ecf3ef;
  padding: 58px 0;
}

.sw-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sw-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 46px);
}

.sw-cta p {
  margin: 0;
  color: var(--sw-muted);
}

.sw-footer {
  padding: 28px 0;
  background: #07100c;
  color: rgba(255,255,255,.7);
}

.sw-footer .sw-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .sw-hero {
    min-height: 88vh;
    background-position: 63% center;
  }

  .sw-nav {
    align-items: flex-start;
  }

  .sw-nav-links {
    display: none;
  }

  .sw-hero-strip,
  .sw-module-grid,
  .sw-screens,
  .sw-flow,
  .sw-section-head,
  .sw-cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .sw-screen-main,
  .sw-screen-stack img {
    min-height: 0;
    height: auto;
  }
}

