@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --violet: #5054a3;
  --blue: #1d7ac9;
  --lavender: #c3c6ef;
  --ink: #1b2333;
  --body-text: #2d3446;
  --page: #f4f6fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: 'Public Sans', system-ui, sans-serif;
  background: var(--page);
}

main { flex: 1; display: flex; flex-direction: column; }

.container { width: 100%; margin: 0; padding: 0 6vw; }

@keyframes pulseDot {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== HEADER ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 14px 0 12px;
  color: white;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.10'%3E%3Cpolygon points='30,2 60,19 60,53 30,70 0,53 0,19'/%3E%3Cpolygon points='90,2 120,19 120,53 90,70 60,53 60,19'/%3E%3Cpolygon points='60,53 90,70 90,104 60,121 30,104 30,70'/%3E%3C/g%3E%3Cg fill='%232480cf' fill-opacity='0.35'%3E%3Ccircle cx='30' cy='2' r='1.6'/%3E%3Ccircle cx='60' cy='19' r='1.6'/%3E%3Ccircle cx='90' cy='2' r='1.6'/%3E%3Ccircle cx='60' cy='53' r='1.6'/%3E%3C/g%3E%3C/svg%3E") 0 0 / 120px 104px, var(--violet);
}
.hero__accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 150px;
  background: linear-gradient(135deg, #2480cf 0%, #1d7ac9 100%);
  clip-path: polygon(42% 0, 100% 0, 100% 100%);
}
.hero .container { position: relative; z-index: 1; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.brand__logo { width: auto; height: 44px; object-fit: contain; }
.brand__divider { width: 1px; height: 28px; background: rgba(255, 255, 255, .25); }

.eyebrow {
  margin: 0 0 7px;
  color: var(--lavender);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.02;
  text-transform: uppercase;
}
h1 span { color: var(--lavender); }

/* ===== CENTRAL MESSAGE ===== */
.intro {
  position: relative;
  flex: 1;
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 52px 0;
  border-bottom: none;
  text-align: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cg fill='none' stroke='%231d7ac9' stroke-width='1' stroke-opacity='0.06'%3E%3Cpolygon points='30,2 60,19 60,53 30,70 0,53 0,19'/%3E%3Cpolygon points='90,2 120,19 120,53 90,70 60,53 60,19'/%3E%3Cpolygon points='60,53 90,70 90,104 60,121 30,104 30,70'/%3E%3C/g%3E%3C/svg%3E") 0 0 / 120px 104px, var(--page);
}
.intro__content { position: relative; z-index: 1; display: grid; justify-items: center; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 7px 16px;
  border: 1px solid #cfe1f4;
  border-radius: 999px;
  color: var(--blue);
  background: #e7f0fa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.intro h2 {
  margin: 0;
  max-width: 760px;
  color: var(--violet);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(24px, 3.1vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  text-wrap: balance;
}
.intro h2 span { color: var(--blue); }

.intro__email {
  margin-top: 64px;
  color: var(--blue);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.intro__email:hover, .intro__email:focus-visible { text-decoration: underline; }

/* ===== ORDERING ===== */
.ordering {
  padding: 16px 6vw;
  background: white;
  border-top: 1px solid #e4e9f0;
}
.ordering > h2, .ordering__cards { max-width: 820px; margin-left: auto; margin-right: auto; }

.ordering > h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--violet);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.2;
}

.cart {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--violet) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1.6'/%3E%3Ccircle cx='18' cy='21' r='1.6'/%3E%3Cpath d='M1 1h3l2.6 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H5'/%3E%3C/svg%3E") center / 19px 19px no-repeat;
  font-size: 0;
  color: transparent;
  transform: none;
}

.ordering__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.card { min-height: 0; padding: 12px 18px; border-radius: 12px; }
.card h3 {
  margin: 0 0 8px;
  font-family: 'Public Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.card--light { border: 1.5px solid #cfe1f4; background: #f3f8fd; }
.card--light h3 { color: var(--blue); }
.card--violet { color: white; background: var(--violet); }
.card--violet h3 { color: var(--lavender); }

.card ol {
  margin: 0;
  padding-left: 18px;
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.6;
}
.card ul { margin: 0; padding: 0; list-style: none; font-size: 14px; line-height: 1.6; }
.card li::marker { font-weight: 800; }
.card--violet li::before {
  content: '\2714';
  margin-right: 9px;
  color: var(--lavender);
  font-weight: 800;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 16px 0;
  color: white;
  background: var(--violet);
}
.footer__accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(135deg, #2480cf 0%, #1d7ac9 100%);
  clip-path: polygon(0 0, 62% 0, 100% 100%, 0 100%);
  opacity: .9;
}
.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__content p {
  margin: 0;
  color: #d6def0;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
footer a { color: #fafafa; font-weight: 700; text-decoration: none; }
footer a:hover, footer a:focus-visible { text-decoration: underline; }
.footer__logo { width: auto; height: 46px; object-fit: contain; }

/* ===== FIT: keep the whole page visible without scrolling ===== */
@media (min-width: 721px) and (max-height: 860px) {
  .hero { padding: 12px 0 10px; }
  .brand { margin-bottom: 8px; font-size: 16px; }
  .brand__logo { height: 38px; }
  .brand__divider { height: 24px; }
  .eyebrow { margin-bottom: 5px; }
  h1 { font-size: clamp(20px, 2.6vw, 28px); }
  .hero__accent { height: 120px; }
  .intro { padding: 26px 0; }
  .status { margin-bottom: 12px; padding: 6px 14px; }
  .intro h2 { font-size: clamp(21px, 2.6vw, 31px); }
  .intro__email { margin-top: 30px; font-size: clamp(14px, 1.4vw, 17px); }
  .ordering { padding: 12px 6vw; }
  .ordering > h2 { margin-bottom: 9px; font-size: clamp(16px, 2vw, 20px); }
  .cart { width: 30px; height: 30px; background-size: 17px 17px; }
  .card { padding: 10px 16px; }
  .card h3 { margin-bottom: 6px; }
  .card ol, .card ul { font-size: 13px; line-height: 1.45; }
  footer { padding: 12px 0; }
  .footer__logo { height: 40px; }
}

@media (min-width: 721px) and (max-height: 700px) {
  .hero { padding: 9px 0 8px; }
  .brand { margin-bottom: 6px; font-size: 14px; }
  .brand__logo { height: 32px; }
  .brand__divider { height: 20px; }
  .eyebrow { margin-bottom: 4px; font-size: 9px; }
  h1 { font-size: clamp(17px, 2.1vw, 23px); }
  .hero__accent { height: 96px; }
  .intro { padding: 16px 0; }
  .status { margin-bottom: 9px; padding: 5px 12px; font-size: 10px; }
  .intro h2 { font-size: clamp(17px, 2.1vw, 24px); }
  .intro__email { margin-top: 18px; font-size: 14px; }
  .ordering { padding: 9px 6vw; }
  .ordering > h2 { margin-bottom: 7px; font-size: clamp(14px, 1.7vw, 17px); }
  .cart { width: 26px; height: 26px; background-size: 15px 15px; }
  .card { padding: 8px 14px; }
  .card h3 { margin-bottom: 5px; font-size: 10px; }
  .card ol, .card ul { font-size: 12px; line-height: 1.35; }
  .card ol { padding-left: 16px; }
  footer { padding: 9px 0; }
  .footer__content p { font-size: 13px; }
  .footer__logo { height: 32px; }
}

/* ===== MOBILE ===== */
@media (max-width: 720px) {
  .container { width: 100%; padding: 0 24px; }
  .hero { padding: 18px 0 16px; }
  .hero__accent { width: 150px; height: 110px; }
  .brand { gap: 10px; font-size: 16px; letter-spacing: 2px; }
  .brand__logo { height: 36px; }
  .brand__divider { height: 24px; }
  .intro { padding: 40px 0; }
  .intro h2 br { display: none; }
  .intro__email { margin-top: 40px; }
  .ordering { padding: 20px 24px; }
  .ordering__cards { grid-template-columns: 1fr; }
  footer { padding: 16px 0; }
  .footer__content { justify-content: space-between; gap: 12px; }
  .footer__content p { font-size: 13px; white-space: normal; text-align: right; }
  .footer__logo { height: 38px; }
}
