:root {
  --ink: #1a2562;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Jost", sans-serif;
  background: linear-gradient(to bottom, #eaffe0 0%, #cbffb3 100%);
  color: var(--ink);
  padding-top: 15px;
}

.page {
  width: 100%;
  max-width: 402px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 16px 48px rgba(26, 37, 98, 0.16);
  border-radius: 20px;
  overflow: hidden;
}

.panel {
  padding: 30px;
}

.panel-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(312deg, rgb(37, 164, 151) 0%, rgb(72, 196, 110) 100%);
  color: var(--white);
  min-height: 362px;
}

.hero-top {
  display: flex;
  align-items: flex-start;
}

.brand {
  margin: 0;
  max-width: calc(100% - 60px);
  color: var(--ink);
  font-size: clamp(74px, 19.5vw, 96px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.flower {
  position: absolute;
  top: 134px;
  right: -10px;
  width: 132px;
  height: 132px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-title {
  margin: auto 0 0;
  max-width: 332px;
  font-size: clamp(24px, 6.8vw, 30px);
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  color: var(--white);
}

.panel-intro {
  background: linear-gradient(242deg, rgb(255, 200, 49) 1.2%, rgb(43, 255, 251) 100%);
}

.panel-intro p,
.panel-meetings p,
.panel-email p {
  margin: 0;
  max-width: 332px;
  font-size: clamp(16px, 3.8vw, 19px);
  line-height: 1.38;
}

.panel-meetings {
  background: linear-gradient(87deg, rgb(217, 239, 23) 1.9%, rgb(29, 215, 119) 98.1%);
}

.panel-meetings h2,
.panel-email h2 {
  margin: 0;
  font-size: 24px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.1;
}

.panel-meetings p {
  margin-top: 6px;
}

.panel-meetings a,
.panel-meetings a:visited,
.panel-meetings a:hover,
.panel-meetings a:active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.panel-email {
  color: var(--white);
  background: linear-gradient(224deg, rgb(87, 211, 92) 1.2%, rgb(22, 150, 169) 100%);
}

.panel-email p {
  margin-top: 6px;
}

.panel-email a,
.panel-email a:visited,
.panel-email a:hover,
.panel-email a:active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:focus-visible {
  outline: 3px solid #0f9f8d;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 420px) {
  .page {
    max-width: 100%;
  }

  .hero-title,
  .panel-intro p,
  .panel-meetings p,
  .panel-email p {
    max-width: none;
  }

  .flower {
    width: 124px;
    height: 124px;
    top: 136px;
    right: -10px;
  }
}

@media (min-width: 768px) {
  body {
    padding: 32px 20px;
  }
}
