:root {
  --ink: #163d36;
  --ink-soft: #41635b;
  --page: #d9ede9;
  --page-deep: #bfded7;
  --panel: rgba(233, 245, 241, 0.84);
  --panel-solid: #e9f5f1;
  --line: rgba(65, 99, 91, 0.18);
  --teal: #11685c;
  --teal-dark: #0e5148;
  --gold: #f3d56b;
  --ember: #b96546;
  --shadow: 0 22px 60px rgba(41, 77, 68, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.hero {
  background: var(--page);
  min-height: 76svh;
  padding: 42px 7vw 64px;
}

.hero__content {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(76svh - 106px);
}

.hero__copy {
  max-width: 520px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-bottom: 68px;
  text-decoration: none;
}

.hero__art {
  margin: 0;
}

.hero__art img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: min(58svh, 560px);
  object-fit: contain;
  width: 100%;
}

.brand img {
  border-radius: 8px;
  height: 38px;
  width: 38px;
}

.brand span {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 880;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 18px;
  max-width: 760px;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.14;
  margin-bottom: 0;
}

h3 {
  font-size: 1.02rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero__lead {
  color: var(--ink-soft);
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero__actions,
.download-actions,
.support-section {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 830;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.coffee-link:hover,
.coffee-link:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button--primary {
  background: var(--ember);
  box-shadow: 0 12px 28px rgba(127, 51, 22, 0.14);
  color: #fff8ef;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #a95c40;
}

.button--secondary {
  background: #d9eee8;
  border-color: rgba(17, 104, 92, 0.22);
  color: var(--teal-dark);
}

.coffee-link {
  display: inline-flex;
  transition: transform 160ms ease;
}

.coffee-link img {
  height: 46px;
  width: auto;
}

.feature-band {
  background: var(--page);
  padding: 0 7vw 58px;
}

.feature-band__inner {
  background: var(--page-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(41, 77, 68, 0.12);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 460px;
  overflow: hidden;
}

.feature-band__image {
  align-self: stretch;
  margin: 0;
  min-height: 460px;
}

.feature-band__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.feature-band__content {
  align-content: center;
  background: rgba(207, 231, 225, 0.72);
  display: grid;
  gap: 28px;
  padding: 58px 7vw 58px 52px;
}

.feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 128px;
  padding: 18px;
}

.feature-list p,
.download-section p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.download-section {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1120px;
  padding: 54px 7vw;
}

.support-section {
  background: rgba(17, 104, 92, 0.12);
  border-top: 1px solid var(--line);
  justify-content: center;
  padding: 28px 7vw 34px;
}

.support-section span {
  color: var(--ink-soft);
  font-weight: 820;
}

.coffee-link--large img {
  height: 50px;
}

@media (max-width: 900px) {
  .brand {
    margin-bottom: 46px;
  }

  h1 {
    font-size: 3.05rem;
    max-width: 620px;
  }

  .hero__content,
  .feature-band__inner,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero__art {
    order: -1;
  }

  .hero__art img {
    max-height: 360px;
  }

  .feature-band__image {
    min-height: 330px;
    order: 2;
  }

  .feature-band__content {
    padding: 48px 7vw;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 72svh;
    padding: 28px 20px 42px;
  }

  .hero__content {
    gap: 28px;
    min-height: auto;
  }

  .brand {
    margin-bottom: 28px;
  }

  .hero__art img {
    max-height: 230px;
  }

  h1 {
    font-size: 2.32rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero__lead {
    font-size: 1.05rem;
    max-width: 32ch;
  }

  .hero__actions,
  .download-actions,
  .support-section {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .coffee-link {
    max-width: 260px;
    width: 100%;
  }

  .coffee-link img {
    height: auto;
    width: 100%;
  }

  .feature-band__content {
    padding: 42px 20px;
  }

  .feature-band {
    padding: 0 20px 42px;
  }

  .feature-band__image {
    min-height: 260px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list article {
    min-height: auto;
  }

  .download-section {
    padding: 42px 20px;
  }

  .support-section {
    padding: 24px 20px 30px;
  }
}
