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

:root {
  --bg: #ffffff;
  --text: #000000;
  --muted: #4B5563;
  --border: #D1D5DB;
  --card: #ffffff;
  --green: #79C314;
  --purple: #8B5CF6;
  --yellow: #FCD34D;
  --black: #000000;
  --focus: rgba(139, 92, 246, .5);
  --shadow: 0 4px 8px rgba(0, 0, 0, .1);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 10px;
  z-index: 10000;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand .mark {
  background: var(--purple);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid var(--purple);
  box-shadow: none;
}

.brand .name {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--black);
}

.brand .name span {
  color: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-weight: 800;
  color: var(--black);
  padding: 8px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav a[aria-current="page"] {
  color: #fff;
  background: var(--black);
}

.nav .cta {
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green);
  box-shadow: none;
  transition: all 0.2s;
}

.nav .cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(121, 195, 20, 0.3);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 24px;
    right: 24px;
    top: 64px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

/* Sections */
.section {
  padding: 56px 0;
  position: relative;
  background: #fff;
}

.section:nth-child(even) {
  background: #fff;
}

.section.tight {
  padding: 34px 0;
}

/* Remove zig-zag divider */
.section:nth-child(even)::after {
  display: none;
}

.section .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--purple);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  border: 2px solid var(--purple);
  box-shadow: none;
}

.section h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: .02em;
  margin: 14px 0 10px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  text-shadow: none;
}

.hero h1 {
  color: #3B82F6;
  text-shadow:
    -3px -3px 0 #fff,
    3px -3px 0 #fff,
    -3px 3px 0 #fff,
    3px 3px 0 #fff,
    -4px 0 0 #fff,
    4px 0 0 #fff,
    0 -4px 0 #fff,
    0 4px 0 #fff;
}

.section h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: .02em;
  margin: 0 0 14px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  text-shadow: none;
}

.section p.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: 1.1fr .9fr;
  align-items: stretch;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 920px) {
  .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .grid.three {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 52px 0 36px;
  background: #ffffff;
}

.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 8px 0;
}

@media (max-width: 920px) {
  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hero .hero-text {
  padding: 8px 0;
}

.hero-title {
  white-space: nowrap;
}

.hero-lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-image-frame {
  display: flex;
  justify-content: center;
}

.hero-image-frame img {
  width: min(100%, 520px);
  border-radius: 16px;
}

.hero .hero-image-placeholder {
  min-height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px dashed var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
}

.hero .hero-image-placeholder::after {
  content: 'Ruimte voor plaatje';
  font-size: 18px;
}

.hero .hero-left {
  padding: 8px 0;
}

.hero .hero-box {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 6px 6px 0px var(--black);
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
}

.hero .pill strong {
  color: var(--black);
}

.hero .hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}

.hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: #fff;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn.primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn.primary:hover {
  text-decoration: none;
}

.btn.secondary {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.btn.secondary:hover {
  text-decoration: none;
}

.btn:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Forms */
form.waitlist {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 900;
  font-size: 13px;
  color: var(--black);
  text-transform: uppercase;
}

input[type="email"],
input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 3px solid var(--black);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--focus);
  border-color: var(--black);
}

.checkgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 700px) {
  .checkgrid {
    grid-template-columns: 1fr;
  }
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border: 3px solid var(--black);
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
}

.check input {
  margin-top: 2px;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

/* Flavor cards */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

@media (max-width: 980px) {
  .flavor-grid {
    grid-template-columns: 1fr;
  }
}

.flavor {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}

.flavor:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.flavor .media {
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-bottom: 3px solid var(--black);
}

.flavor .media img {
  max-height: 320px;
  object-fit: contain;
}

.flavor .body {
  padding: 18px;
  background: #fff;
}

.flavor .body h3 {
  margin: 0 0 8px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
}

.flavor .tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--green);
  border: 2px solid var(--green);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  box-shadow: none;
}

.flavor .body p {
  margin: 0;
  color: var(--muted);
}

.home-moments-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center;
}

.home-side-image {
  display: flex;
  justify-content: center;
}

.home-side-image img {
  width: min(100%, 360px);
}

/* Tables */
.table tr:last-child td {
  border-bottom: none;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list .label {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.spec-list .value {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.table-scroll {
  width: 100%;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  padding: 6px 12px;
  background: rgba(11, 61, 145, .06);
  border: 1px solid rgba(11, 61, 145, .1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.table th,
.table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table th {
  text-align: left;
  background: rgba(11, 61, 145, .04);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .05em;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 14px;
}

.nutrition-table th,
.nutrition-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.nutrition-table th {
  background: rgba(11, 61, 145, .04);
  font-weight: 800;
  color: var(--blue);
}

.nutrition-table td:last-child,
.nutrition-table th:last-child {
  text-align: right;
}

.nutrition-table tr:last-child td {
  border-bottom: none;
}

.ingredients-intro,
.ingredients-highlights {
  display: grid;
  align-items: center;
}

.ingredients-intro {
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.ingredients-highlights {
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.ingredients-image {
  display: flex;
  justify-content: center;
}

.ingredients-image img {
  width: min(100%, 360px);
}

.ingredients-presenting-image-mobile {
  display: none;
  margin-top: 24px;
}

.note {
  border-left: 4px solid var(--purple);
  padding: 12px 14px;
  background: rgba(139, 92, 246, .08);
  border-radius: 12px;
  color: var(--muted);
}

/* Footer */
footer {
  border-top: 4px solid var(--black);
  padding: 28px 0;
  background: var(--black);
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.disclaimer {
  color: #fff;
  font-size: 13px;
  max-width: 72ch;
}

@media (max-width: 980px) {
  .home-flavor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-moments-layout,
  .ingredients-intro,
  .ingredients-highlights {
    grid-template-columns: 1fr;
  }

  .home-side-image {
    order: -1;
  }

  .ingredients-presenting-image {
    display: none;
  }

  .ingredients-presenting-image-mobile {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero-title {
    white-space: normal;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-image-frame img,
  .home-side-image img,
  .ingredients-image img {
    width: 100%;
    max-width: 420px;
  }

  .home-flavor-grid .flavor {
    padding: 18px !important;
  }

  .home-flavor-grid .flavor .media {
    min-height: 240px;
    padding: 8px;
  }

  .home-flavor-grid .flavor .media img {
    width: 100%;
    max-width: 220px;
    max-height: 240px;
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .table-scroll {
    overflow-x: hidden;
  }

  .nutrition-table {
    font-size: 13px;
    margin: 12px 0 0;
  }

  .nutrition-table thead {
    display: none;
  }

  .nutrition-table tbody {
    display: grid;
    gap: 12px;
  }

  .nutrition-table tr {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
  }

  .nutrition-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border-bottom: none;
    text-align: left;
  }

  .nutrition-table td:last-child {
    text-align: left;
  }

  .nutrition-table td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--text);
    flex: 0 0 48%;
  }
}
