:root {
  color-scheme: light;
  --brand: #0B7A55;
  --brand-accent: #0E9F6E;
  --brand-strong: #065F46;
  --brand-soft: #F0FDF6;
  --surface: #FFFFFF;
  --surface-raised: #FFFFFF;
  --surface-tinted: #F0FDF6;
  --ink: #111827;
  --ink-soft: #4B5563;
  --line: #DCE6E1;
  --button-text: #FFFFFF;
  --shadow: 0 24px 70px rgba(6, 95, 70, .14);
  --shadow-phone: 0 25px 50px -12px rgba(17, 24, 39, .15);
  --shadow-alert: 0 4px 6px -1px rgba(17, 24, 39, .05), 0 2px 4px -2px rgba(17, 24, 39, .04);
  --radius: 18px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 36px;
  object-fit: contain;
}

.site-header__context {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--surface) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 159, 110, .08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 64px;
}

.hero__content {
  max-width: 650px;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--brand-accent);
}

h1 .accent::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: -1;
  height: 8px;
  border-radius: 999px;
  background: rgba(14, 159, 110, .13);
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
}

.destination-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.destination-card {
  min-height: 190px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(6, 95, 70, .05);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.destination-card__topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.destination-card__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.destination-card:hover {
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(6, 95, 70, .12);
  transform: translateY(-3px);
}

.destination-card--primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--button-text);
  box-shadow: 0 16px 36px rgba(11, 122, 85, .2);
}

.destination-card--primary:hover {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
}

.destination-card__label {
  margin-bottom: 0;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.destination-card--primary .destination-card__label {
  color: rgba(255, 255, 255, .78);
}

.destination-card strong {
  max-width: 14ch;
  font-size: 18px;
  line-height: 1.2;
}

.destination-card__description {
  max-width: 24ch;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.destination-card--primary .destination-card__description {
  color: rgba(255, 255, 255, .82);
}

.destination-card__action {
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
}

.destination-card--primary .destination-card__icon {
  padding: 4px;
  border-radius: 50%;
  background: #FFFFFF;
}

.destination-card--primary .destination-card__action {
  color: var(--button-text);
}

.primary-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 2px solid var(--brand);
  border-radius: 14px;
  background: var(--brand);
  color: var(--button-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(11, 122, 85, .2);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cta-logo {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  object-fit: contain;
  padding: 2px;
  border-radius: 50%;
  background: #FFFFFF;
}

.secondary-cta .cta-logo {
  background: var(--brand-soft);
}

.primary-cta:hover {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  box-shadow: 0 16px 34px rgba(6, 95, 70, .26);
  transform: translateY(-2px);
}

.primary-cta:active {
  transform: translateY(1px) scale(.99);
}

.secondary-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1.5px solid var(--brand);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.secondary-cta:hover {
  border-color: var(--brand-strong);
  background: var(--brand-soft);
  color: var(--brand-strong);
  transform: translateY(-2px);
}

.secondary-cta:active {
  transform: translateY(1px) scale(.99);
}

.primary-cta:focus-visible,
.secondary-cta:focus-visible,
.destination-card:focus-visible,
.brand:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 48%, transparent);
  outline-offset: 4px;
}

.hero__note {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero__blob {
  position: absolute;
  width: min(88vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(14, 159, 110, .1);
}

.phone {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 560px;
  padding: 10px;
  border-radius: 42px;
  background: var(--ink);
  box-shadow: var(--shadow-phone), 0 0 0 1px rgba(17, 24, 39, .1);
  transform: rotate(-3deg);
}

@media (min-width: 968px) {
  .phone {
    width: 300px;
    height: 600px;
  }
}

.phone__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 90px;
  height: 24px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone__screen {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 50px 16px 16px;
  border-radius: 34px;
  background: var(--brand-soft);
}

.phone__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.phone__label {
  color: var(--brand-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.notification-feed-container {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
}

.phone-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, .05);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  box-shadow: var(--shadow-alert);
  transition: opacity 300ms ease, transform 300ms ease;
  animation: alert-slide-up 500ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.phone-alert__image {
  width: 52px;
  height: 52px;
  padding: 3px;
  border: 1px solid rgba(17, 24, 39, .05);
  border-radius: 12px;
  background: #FFFFFF;
  object-fit: contain;
}

.phone-alert__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.phone-alert__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.phone-alert__source {
  overflow: hidden;
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.phone-alert__time {
  flex-shrink: 0;
  color: #6B7280;
  font-size: 10px;
}

.phone-alert__title {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-alert__price {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.phone-alert__price strong {
  color: var(--brand-accent);
  font-size: 14px;
  font-weight: 800;
}

@keyframes alert-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.channel-benefits {
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.delivery-section {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.channel-benefits__intro {
  max-width: 720px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.channel-benefits h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.channel-benefits__intro p,
.final-cta p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.channel-benefits__intro p {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: 17px;
}

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

.delivery-card {
  min-height: 310px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(6, 95, 70, .06);
}

.delivery-card--group {
  border-top-color: #8BCFB0;
}

.delivery-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
}

.delivery-card__brand img {
  width: 32px;
  height: 32px;
}

.delivery-card h3 {
  max-width: 18ch;
  margin: 26px 0 10px;
  font-size: 26px;
  line-height: 1.35;
}

.delivery-card p {
  max-width: 42ch;
  margin-bottom: 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.delivery-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.delivery-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.delivery-note strong {
  color: var(--ink);
}

.offers-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-tinted);
}

.offers-bridge__label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offers-bridge h3 {
  margin: 0 0 6px;
  font-size: 21px;
  line-height: 1.2;
}

.offers-bridge p {
  max-width: 52ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.offers-bridge__link {
  flex: 0 0 auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1.5px solid var(--brand);
  border-radius: 14px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.offers-bridge__link:hover {
  border-color: var(--brand-strong);
  background: var(--surface);
  transform: translateY(-2px);
}

.offers-bridge__link:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 48%, transparent);
  outline-offset: 4px;
}

.final-cta {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--surface-tinted);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.final-cta__actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 0;
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer a {
  text-underline-offset: 4px;
}

@media (min-width: 821px) and (max-width: 967px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .site-header__context {
    display: none;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__grid,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 44px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero__visual {
    min-height: 560px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .offers-bridge {
    align-items: flex-start;
    flex-direction: column;
  }

  .offers-bridge__link {
    width: 100%;
  }

  .final-cta__inner {
    align-items: start;
  }

  .final-cta__actions {
    justify-self: start;
    flex-direction: column;
  }

  .final-cta .primary-cta,
  .final-cta .secondary-cta {
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .site-header__inner {
    min-height: 64px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 36px;
    height: 32px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .destination-picker {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

  .phone {
    width: 250px;
    height: 500px;
  }

  .phone-alert {
    padding: 11px;
  }

  .phone-alert__image {
    width: 44px;
    height: 44px;
  }

  .primary-cta {
    width: 100%;
  }

  .secondary-cta {
    width: 100%;
  }

  .delivery-card {
    min-height: 0;
    padding: 24px;
  }

  .site-footer__inner {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-cta {
    transition: none;
  }

  .secondary-cta {
    transition: none;
  }

  .offers-bridge__link {
    transition: none;
  }

  .destination-card {
    transition: none;
  }

  .phone-alert {
    animation: none;
    transition: none;
  }
}
