:root {
  --bg: #f6f2ea;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #1a1713;
  --muted: #6b6358;
  --line: rgba(34, 27, 19, 0.1);
  --brand: #0b7d69;
  --brand-strong: #075f51;
  --accent: #d7efe8;
  --shadow: 0 24px 60px rgba(28, 20, 12, 0.12);
  --radius: 24px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Arabic", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(11, 125, 105, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe6 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 234, 0.76);
  border-bottom: 1px solid rgba(26, 23, 19, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, #0e9f85 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 16px 32px rgba(11, 125, 105, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav a:hover {
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 36px rgba(11, 125, 105, 0.24);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 125, 105, 0.1);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin-top: 20px;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 24px;
}

.hero-card,
.panel,
.feature-card,
.shot-card,
.help-card,
.info-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 22px;
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.signal-card,
.product-card {
  border-radius: 20px;
  border: 1px solid rgba(26, 23, 19, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.signal-card {
  padding: 18px 20px;
}

.signal-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 23, 19, 0.06);
}

.stat-value {
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.section {
  padding: 28px 0 64px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-copy {
  max-width: 60ch;
  color: var(--muted);
}

.feature-grid,
.shots-grid,
.support-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.help-card,
.info-card {
  padding: 22px;
}

.feature-card p,
.help-card p,
.info-card p,
.panel p {
  margin: 0;
  color: var(--muted);
}

.feature-icon,
.help-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
  background: var(--accent);
}

.panel {
  padding: 24px;
}

.shots-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-showcase {
  display: grid;
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-shot img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.shot-card {
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.shot-caption {
  padding: 14px 16px 16px;
  font-size: 0.96rem;
  color: var(--muted);
}

.support-grid,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.inline-note {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(11, 125, 105, 0.08);
  color: var(--brand-strong);
  font-weight: 600;
}

.footer {
  padding: 36px 0 64px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
}

@media (max-width: 1120px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .hero-grid,
  .support-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-header,
  .footer-inner,
  .topbar-inner {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  .feature-grid,
  .shots-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
