:root {
  --ink: #0a1a26;
  --ink-soft: #1c2f3b;
  --paper: #f5f2ea;
  --paper-alt: #efe9de;
  --accent: #f4b35f;
  --accent-2: #22a7a0;
  --accent-3: #ed6b5a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 16, 24, 0.18);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top right, rgba(34, 167, 160, 0.18), transparent 40%),
              radial-gradient(circle at 10% 30%, rgba(244, 179, 95, 0.22), transparent 45%),
              var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

.site-header {
  padding: 28px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}

.brand-text .name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.brand-text .tag {
  font-size: 12px;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a {
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover {
  border-bottom-color: var(--accent-2);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(10, 26, 38, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

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

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 60px;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.lead {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.metric .value {
  font-size: 20px;
  font-weight: 700;
}

.metric .label {
  font-size: 12px;
  color: var(--ink-soft);
}

.hero-visual {
  display: grid;
  gap: 14px;
  align-content: start;
}

.screen-card {
  background: var(--white);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.screen-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.screen-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 26, 38, 0.2);
}

.screen-body {
  display: grid;
  gap: 16px;
}

.chart {
  height: 140px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(34, 167, 160, 0.3), rgba(244, 179, 95, 0.4));
}

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

.screen-pill {
  height: 36px;
  border-radius: 12px;
  background: rgba(10, 26, 38, 0.08);
}

.hero-note {
  font-size: 13px;
  color: var(--ink-soft);
}

.section {
  padding: 80px 6vw;
}

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

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3.2vw, 38px);
}

.section-head p {
  max-width: 560px;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.panel {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.card p {
  color: var(--ink-soft);
  margin: 10px 0 16px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 167, 160, 0.14);
  color: var(--ink);
  font-size: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: rgba(255, 255, 255, 0.75);
  padding: 20px;
  border-radius: 16px;
}

.hardware {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.hardware-item {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.hardware-visual {
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(237, 107, 90, 0.45), rgba(244, 179, 95, 0.45));
  margin-bottom: 16px;
}

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.shot {
  background: linear-gradient(135deg, rgba(10, 26, 38, 0.12), rgba(34, 167, 160, 0.18));
  border-radius: 18px;
  padding: 18px;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.shot span {
  font-size: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 999px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(10, 26, 38, 0.2);
  padding: 12px;
  font-family: "Space Grotesk", sans-serif;
}

.site-footer {
  padding: 30px 6vw 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
}

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

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

  .nav-links {
    justify-content: center;
  }

  .nav-cta {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .hero {
    margin-top: 40px;
  }

  .site-footer {
    flex-direction: column;
  }
}
