:root {
  --bg: #fbfaf5;
  --text: #141716;
  --muted: #24302a;
  --green-950: #113d2d;
  --green-850: #155333;
  --green-700: #2f7b27;
  --green-100: #e9efe0;
  --green-075: #f1f4ea;
  --line: #dfe4d6;
  --shadow: 0 18px 50px rgba(17, 61, 45, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  background:
    radial-gradient(circle at 50% 46%, rgba(111, 150, 67, 0.08), transparent 17rem),
    linear-gradient(180deg, #fffefb 0%, var(--bg) 72%, #f4f6eb 100%);
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 980px);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  padding: clamp(24px, 4vh, 42px) 0 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-header {
  margin-bottom: clamp(24px, 4vh, 36px);
}

.brand-logo {
  display: block;
  width: clamp(205px, 24vw, 268px);
  height: auto;
}

.hero {
  width: 100%;
  text-align: center;
}

h1 {
  max-width: 780px;
  margin: 0 auto;
  color: var(--green-950);
  font-size: clamp(2.6rem, 6.4vw, 4.72rem);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.divider {
  width: 84px;
  height: 2px;
  margin: clamp(22px, 3vh, 30px) auto 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #8ea85d 35%, #2f7b27 50%, #8ea85d 65%, transparent);
}

.intro {
  max-width: 650px;
  margin: 0 auto 24px;
  color: #171b19;
  font-size: clamp(1.12rem, 2.2vw, 1.48rem);
  line-height: 1.55;
  font-weight: 500;
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 850px);
  margin: 0 auto clamp(28px, 4vh, 36px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 251, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.info-item {
  min-width: 0;
  margin: 0;
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.info-item + .info-item {
  border-left: 1px solid var(--line);
}

.info-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item p {
  margin: 0;
  color: #151917;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 730;
}

.info-item a {
  color: var(--green-700);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 68px;
  max-width: 100%;
  padding: 0 34px;
  border-radius: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 14rem),
    linear-gradient(180deg, #328028, #1f691f 60%, #145b21);
  box-shadow: 0 16px 30px rgba(25, 102, 33, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: clamp(1.14rem, 2.4vw, 1.72rem);
  line-height: 1.15;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.cta svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 19px 36px rgba(25, 102, 33, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.cta:focus-visible,
.info-item a:focus-visible {
  outline: 3px solid rgba(47, 123, 39, 0.38);
  outline-offset: 5px;
}

.landscape {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 47px;
  width: 100%;
  height: min(21vw, 205px);
  min-height: 118px;
  object-fit: cover;
  object-position: bottom center;
  pointer-events: none;
  user-select: none;
}

.privacy-note {
  position: relative;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  color: #1b201e;
  background: rgba(248, 250, 241, 0.88);
  border-top: 1px solid rgba(217, 225, 203, 0.76);
  backdrop-filter: blur(8px);
}

.privacy-note svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-note p {
  margin: 0;
  font-size: clamp(0.94rem, 1.8vw, 1.12rem);
  font-weight: 500;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 560px);
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 178px;
  }

  .brand-header {
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .intro {
    margin-bottom: 22px;
    font-size: 1.08rem;
  }

  .info-panel {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .info-item {
    padding: 20px 24px;
  }

  .info-item + .info-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cta {
    width: min(100%, 460px);
    min-height: 66px;
    padding: 0 22px;
    border-radius: 20px;
  }

  .cta svg {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .landscape {
    height: 138px;
    bottom: 54px;
  }

  .privacy-note {
    align-items: flex-start;
    min-height: 54px;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(100% - 22px, 390px);
    padding-bottom: 166px;
  }

  .brand-logo {
    width: min(76vw, 240px);
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 2.78rem);
  }

  .info-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .cta {
    gap: 10px;
    font-size: 1.04rem;
  }

  .privacy-note {
    gap: 9px;
    padding-inline: 12px;
  }
}
