/* Basic business-card website styles. No frameworks or external assets. */

:root {
  --navy: #142b3d;
  --navy-dark: #0d1d29;
  --green: #365b4f;
  --sand: #f3eee6;
  --white: #ffffff;
  --text: #1c2830;
  --muted: #5d6971;
  --line: #ded8ce;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  color: var(--white);
  background: var(--navy-dark);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: var(--sand);
}

.hidden {
  display: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

#message{
  width: 100%;
}
.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--navy-dark);
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-top: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.16rem);
}

.button {
  display: inline-block;
  padding: 0.78rem 1.25rem;
  border-radius: 5px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-dark);
}

.hero-image {
  width: 100%;
  aspect-ratio: 9 / 6.5;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(13, 29, 41, 0.12);
}

.section {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
}

.section-alt {
  background: #f7f8f6;
}

.product-card {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 2rem;
  margin-top: 1.75rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.status-indev {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  color: var(--green);
  background: #e7efe9;
  font-size: 0.78rem;
  font-weight: 700;
}
.status-released {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  color: var(--dark_green);
  background: #c7efc9;
  font-size: 0.78rem;
  font-weight: 700;
}

.features {
  align-self: center;
  margin: 0;
  padding-left: 1.2rem;
}

.features li {
  margin-bottom: 0.6rem;
}

.site-footer {
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-dark);
  font-size: 0.88rem;
}

.footer-inner p {
  margin-bottom: 0.5rem;
}

.legal {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.85rem 0;
  }

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

  .hero-image {
    order: -1;
  }
}
