@font-face {
  font-family: "Site Mono";
  src: local("JetBrains Mono");
}

* { box-sizing: border-box; }

html { color-scheme: light only; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a1a1a;
  font-family: "Share", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: #3d5aa8; text-decoration: none; }
a:hover { color: #2c4380; text-decoration: underline; }

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

/* Header */
.site-header {
  background: #3d5aa8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.logo svg { display: block; }

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}
.main-nav a:hover { color: #fff; opacity: 0.8; text-decoration: none; }

/* Hero */
.hero {
  background: #4a4a4a;
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hero img:first-child { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); transition: filter 0.3s; }
.hero:hover img:first-child { filter: blur(2px); }
.hero-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 260px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35));
}
.hero.hero--small { height: 330px; }

/* Features */
.features {
  background: #fff;
  padding: 90px 48px 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.feature { text-align: center; }
.feature-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 2px solid #3d5aa8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.feature-icon svg { width: 42px; height: 42px; stroke: #3d5aa8; }
.feature h3 { font-size: 22px; margin: 0 0 10px; font-weight: 700; }
.feature p { margin: 0; color: #333; font-size: 15px; }

/* About */
.about {
  background: #f0f0f0;
  display: flex;
  align-items: stretch;
}
.about-text {
  flex: 0 0 50%;
  padding: 90px 90px 90px 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.about-photo { flex: 0 0 50%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about h2 { font-size: 28px; font-weight: 700; margin: 0 0 26px; }
.about p { margin: 0 0 30px; font-size: 15px; color: #222; }
.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #1a1a1a;
}
.policy-link svg { width: 16px; height: 16px; stroke: #1a1a1a; }
.policy-link:hover { color: #3d5aa8; }
.policy-link:hover svg { stroke: #3d5aa8; }

/* Contact */
.contact {
  background: #fff;
  padding: 90px 48px 90px;
  text-align: center;
}
.contact h2 { font-size: 28px; font-weight: 700; margin: 0 0 22px; }
.contact > p { max-width: 620px; margin: 0 auto 50px; font-size: 15px; color: #222; }

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #f7f7f7;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: #1a1a1a;
  resize: vertical;
}
.form-group textarea { min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9a9a9a; }

.recaptcha-note {
  font-size: 12px;
  color: #666;
  margin: 0 0 24px;
}
.recaptcha-note a { color: #c0356e; }
.recaptcha-note a:hover { color: #96284f; }

.submit-btn {
  width: 100%;
  background: #3d5aa8;
  color: #fff;
  border: none;
  padding: 15px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.submit-btn:hover { background: #2c4380; }

.form-status { font-size: 14px; margin-top: 14px; }

/* Policy page */
.policy-content {
  padding: 70px 48px 90px;
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h1 { font-size: 26px; font-weight: 700; margin: 0 0 24px; }
.policy-content p { font-size: 15px; margin: 0 0 20px; }
.policy-content ul { margin: 0 0 34px; padding-left: 22px; }
.policy-content li { font-size: 15px; margin-bottom: 8px; }

/* Footer */
.site-footer {
  background: #eee;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #555;
}

@media (max-width: 860px) {
  .site-header { padding: 14px 20px; }
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 13px; }
  .logo img { height: 18px; }
  .hero { height: 260px; }
  .hero-symbol { height: 130px; }
  .features { grid-template-columns: 1fr; gap: 44px; padding: 56px 24px; }
  .feature-icon { width: 84px; height: 84px; }
  .feature-icon svg { width: 34px; height: 34px; }
  .feature h3 { font-size: 20px; }
  .about { flex-direction: column; }
  .about-text { flex: 1 1 auto; padding: 48px 24px 40px; }
  .about-photo { flex: 1 1 auto; height: 260px; }
  .about h2, .contact h2, .policy-content h1 { font-size: 24px; }
  .contact { padding: 56px 24px; }
  .policy-content { padding: 48px 24px 60px; }
}

@media (max-width: 480px) {
  .site-header { padding: 12px 16px; }
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 12px; }
  .hero { height: 200px; }
  .hero-symbol { height: 90px; }
  .about-text { padding: 40px 20px 32px; }
  .about-photo { height: 200px; }
  .contact, .features { padding-left: 20px; padding-right: 20px; }
}
