@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("./fonts/sora-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  color: #14233a;
  background: #f5f9f8;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: #096b62;
}

.static-header,
.static-footer {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #dfeae7;
}

.static-footer {
  border-top: 1px solid #dfeae7;
  border-bottom: 0;
}

.static-bar,
.static-main,
.static-footer-inner {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
}

.static-bar,
.static-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.static-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #14233a;
  font-weight: 700;
  text-decoration: none;
}

.static-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #096b62;
  color: white;
  font-size: 14px;
}

.static-main {
  min-height: calc(100vh - 145px);
  padding-block: clamp(48px, 8vw, 88px);
}

.static-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #dfeae7;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 50px rgba(21, 55, 51, 0.08);
}

h1,
h2 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.static-section + .static-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e7efed;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.static-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 18px;
  background: #096b62;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.static-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 8px;
  font-weight: 700;
}

.static-footer-inner {
  font-size: 0.875rem;
}

@media (max-width: 520px) {
  .static-bar,
  .static-footer-inner {
    min-height: 64px;
  }

  .static-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }
}
