@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #007934;
  --secondary: #0a222e;
  --background: #f1f5f3;
  --surface: #ffffff;
  --text: #212121;
  --muted: #666666;
  --border: #e4e4e4;
  --shadow: 0 12px 32px rgba(10, 34, 46, 0.12);
}

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

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(
    180deg,
    #f7faf8 0%,
    var(--background) 55%,
    #eef3f0 100%
  );
  color: var(--text);
  min-height: 100vh;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 6px;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
}

.brand-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-right: 8px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: var(--primary);
}

.content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--secondary);
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-badge {
  background: #111111;
  color: #ffffff;
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 170px;
  display: inline-flex;
  gap: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
}

.store-badge:hover,
.store-badge:focus {
  background: #000000;
}

.badge-title {
  font-size: 11px;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.badge-name {
  font-size: 16px;
  font-weight: 600;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

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

.hero-media {
  background: #fdfdfe;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  padding: 16px;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.experience {
  margin-top: 24px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: 26px;
  color: var(--secondary);
}

.section-heading p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.experience-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-media {
  background: #fdfdfe;
  border-radius: 18px;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 400px;
  max-height: 432px;
  margin: 0 auto;
  padding: 12px;
}

.experience-media img {
  width: 100%;
  height: 100%;
}

.experience-card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--secondary);
}

.experience-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.experience-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 121, 52, 0.06);
  transition: all 0.2s ease;
}

.link-chip:hover,
.link-chip:focus {
  background: rgba(0, 121, 52, 0.12);
}

.page-title {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--secondary);
}

.page-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.legal-section {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.legal-section h2 {
  margin: 20px 0 8px;
  font-size: 18px;
  color: var(--secondary);
}

.legal-section p,
.legal-section li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 18px;
  margin: 8px 0 0;
}

.site-footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--muted);
}

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

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

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-media {
    display: none;
  }
}
