/*
 * Easy Eats interface styles.
 *
 * Design direction: vivid green. A saturated brand green with lime as its
 * highlight, deep gradient panels for the hero and featured plan, alternating
 * grounds so sections separate without borders, and amber still reserved for
 * measured data. One corner radius rule is held throughout.
 *
 * The base layer below is the original quieter system; the "vivid refresh"
 * block at the end of this file is what carries the colour, kept separate so
 * the two can be reasoned about, and reverted, independently.
 *
 * Mobile first. A bottom tab bar up to 899px, a left rail from 900px.
 */

/* ------------------------------------------------------------------ tokens */

:root {
	--bg: #eef4ea;
	--surface: #ffffff;
	--surface-sunk: #e3eedd;
	--ink: #0f1a13;
	--muted: #52655a;
	--line: #d3e3cf;
	--line-strong: #b2ccac;
	--accent: #15803d;
	--accent-bright: #1ba350;
	--accent-press: #0f6231;
	--accent-soft: #dcf5e3;
	--accent-soft-strong: #b8e8c7;
	--lime: #a3e635;
	--lime-deep: #4d7c0f;
	--lime-soft: #eefbd2;
	--ink-deep: #06281a;
	--amber: #b45309;
	--amber-soft: #fdf0d5;
	--danger: #b0281c;
	--danger-soft: #fbe6e3;

	/* Colour that carries weight: used for the hero, feature bands and the
	   primary action, so the page reads as one confident thing rather than a
	   grid of white boxes. */
	--grad-deep: linear-gradient(145deg, #06281a 0%, #0f5c33 48%, #1f7d3c 100%);
	--grad-accent: linear-gradient(135deg, #15803d 0%, #1ba350 55%, #5fb833 100%);
	--grad-lime: linear-gradient(120deg, #4d7c0f 0%, #7cb518 50%, #a3e635 100%);
	--grad-mint: linear-gradient(160deg, #f4fcf3 0%, #dcf5e3 100%);
	--glow-lime: 0 0 0 1px rgba(163, 230, 53, 0.35), 0 10px 30px rgba(21, 128, 61, 0.28);

	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-pill: 999px;

	--s-xs: 6px;
	--s-sm: 10px;
	--s-md: 18px;
	--s-lg: 32px;
	--s-xl: 56px;
	--s-xxl: 96px;

	--font-heading: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

	--lift: 0 8px 24px rgba(20, 33, 27, 0.1);
	--lift-sm: 0 2px 8px rgba(20, 33, 27, 0.07);

	--rail: 244px;
	--tabbar: 66px;
	--measure: 66ch;
}

/* ------------------------------------------------------------------- reset */

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

html {
	-webkit-text-size-adjust: 100%;
}

body.ee {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.ee img,
body.ee svg {
	max-width: 100%;
}

body.ee h1,
body.ee h2,
body.ee h3,
body.ee h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 var(--s-sm);
	text-wrap: balance;
}

body.ee h1 {
	font-size: clamp(30px, 5.2vw, 58px);
	line-height: 1.04;
}

body.ee h2 {
	font-size: clamp(24px, 3.4vw, 38px);
	line-height: 1.08;
}

body.ee h3 {
	font-size: clamp(18px, 2vw, 23px);
	line-height: 1.14;
}

body.ee h4 {
	font-size: 16px;
	line-height: 1.2;
}

body.ee p {
	margin: 0 0 var(--s-md);
	max-width: var(--measure);
}

/* Buttons carry their own colour. This rule must not reach them: it is more
   specific than the .ee-btn rules below, and would paint button labels the
   same green as the button itself. */
body.ee a:not([class*="ee-btn"]) {
	color: var(--accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

body.ee a:not([class*="ee-btn"]):hover {
	text-decoration-thickness: 2px;
}

body.ee ul,
body.ee ol {
	margin: 0 0 var(--s-md);
	padding-left: 1.2em;
}

body.ee li {
	margin-bottom: 6px;
}

body.ee :focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

body.ee .ee-num,
body.ee .ee-stat-value,
body.ee .ee-qty {
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
}

.ee-sr {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.ee-skip {
	position: absolute;
	left: -9999px;
	top: 8px;
	background: var(--accent);
	color: #fff;
	padding: 10px 16px;
	border-radius: var(--r-pill);
	z-index: 200;
}

.ee-skip:focus {
	left: 12px;
}

/* ------------------------------------------------------------------ layout */

.ee-wrap {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding-inline: 20px;
}

.ee-wrap-narrow {
	max-width: 760px;
}

/* ----------------------------------------------------------------- buttons */

.ee-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	padding: 13px 22px;
	border-radius: var(--r-pill);
	border: 1px solid transparent;
	background: var(--accent);
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.12s ease, background-color 0.12s ease, opacity 0.12s ease;
	white-space: nowrap;
}

.ee-btn:hover {
	background: var(--accent-press);
	color: #fff;
	text-decoration: none;
}

.ee-btn:active {
	transform: translateY(2px);
}

.ee-btn[disabled],
.ee-btn[aria-disabled="true"] {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}

.ee-btn-secondary {
	background: var(--surface);
	color: var(--ink);
	border-color: var(--line-strong);
}

.ee-btn-secondary:hover {
	background: var(--surface);
	color: var(--ink);
	border-color: var(--ink);
}

.ee-btn-ghost {
	background: transparent;
	color: var(--accent);
	border-color: transparent;
	padding-inline: 10px;
}

.ee-btn-ghost:hover {
	background: var(--accent-soft);
	color: var(--accent);
}

.ee-btn-danger {
	background: var(--danger);
}

.ee-btn-danger:hover {
	background: #8d2e24;
}

.ee-btn-sm {
	font-size: 13.5px;
	padding: 9px 16px;
}

.ee-btn-lg {
	font-size: 16.5px;
	padding: 16px 30px;
}

.ee-btn-block {
	width: 100%;
}

.ee-btn-icon {
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: var(--r-pill);
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
	border: 1px solid var(--line);
}

.ee-btn-icon:hover {
	background: #fff;
	color: var(--accent);
}

.ee-btn-icon.is-on {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.ee-btn-icon svg {
	width: 19px;
	height: 19px;
	display: block;
}

/* ------------------------------------------------------------------- cards */

.ee-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: var(--s-md);
}

.ee-card-pad {
	padding: clamp(18px, 3vw, 28px);
}

.ee-card-flat {
	background: transparent;
	border: 0;
	border-top: 1px solid var(--line);
	border-radius: 0;
	padding: var(--s-md) 0;
}

.ee-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 var(--s-sm);
	display: block;
}

.ee-lede {
	font-size: clamp(16.5px, 1.6vw, 19px);
	color: var(--muted);
	line-height: 1.5;
}

.ee-meta {
	font-size: 13.5px;
	color: var(--muted);
}

.ee-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 9px;
	border-radius: var(--r-sm);
	background: var(--accent-soft);
	color: var(--accent);
}

.ee-tag-quiet {
	background: var(--surface-sunk);
	color: var(--muted);
}

.ee-tag-warn {
	background: var(--amber-soft);
	color: #8f5d06;
}

.ee-tag-bad {
	background: var(--danger-soft);
	color: var(--danger);
}

/* ------------------------------------------------------------------ inputs */

.ee-field {
	margin-bottom: var(--s-md);
}

.ee-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}

.ee-hint {
	font-size: 13px;
	color: var(--muted);
	margin-top: 5px;
}

.ee-error {
	font-size: 13px;
	color: var(--danger);
	margin-top: 5px;
	font-weight: 500;
}

.ee-input,
.ee-select,
.ee-textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--ink);
	background: var(--surface);
	border: 1px solid var(--line-strong);
	border-radius: var(--r-sm);
	padding: 12px 14px;
	appearance: none;
}

.ee-input:focus,
.ee-select:focus,
.ee-textarea:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-color: var(--accent);
}

.ee-input::placeholder {
	color: #8b978f;
}

.ee-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8l5 5 5-5' fill='none' stroke='%235e6f66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 18px;
	padding-right: 40px;
}

.ee-input-group {
	display: flex;
	align-items: stretch;
}

.ee-input-group .ee-input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.ee-input-suffix {
	display: inline-flex;
	align-items: center;
	padding: 0 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	background: var(--surface-sunk);
	border: 1px solid var(--line-strong);
	border-left: 0;
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.ee-row {
	display: grid;
	gap: var(--s-md);
}

@media (min-width: 560px) {
	.ee-row-2 {
		grid-template-columns: 1fr 1fr;
	}

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

/* choice cards and chips */

.ee-choices {
	display: grid;
	gap: var(--s-sm);
}

.ee-choice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--surface);
	border: 1px solid var(--line-strong);
	border-radius: var(--r-md);
	padding: 14px 16px;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
	width: 100%;
	transition: border-color 0.12s ease, background-color 0.12s ease;
}

.ee-choice:hover {
	border-color: var(--ink);
}

.ee-choice.is-on {
	border-color: var(--accent);
	background: var(--accent-soft);
}

.ee-choice-mark {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border-radius: var(--r-pill);
	border: 2px solid var(--line-strong);
	margin-top: 2px;
	position: relative;
}

.ee-choice.is-on .ee-choice-mark {
	border-color: var(--accent);
	background: var(--accent);
}

.ee-choice.is-on .ee-choice-mark::after {
	content: "";
	position: absolute;
	inset: 4px;
	background: #fff;
	border-radius: var(--r-pill);
}

.ee-choice-title {
	font-weight: 600;
	display: block;
}

.ee-choice-help {
	font-size: 13.5px;
	color: var(--muted);
	display: block;
	margin-top: 2px;
}

.ee-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ee-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	padding: 9px 15px;
	border-radius: var(--r-pill);
	border: 1px solid var(--line-strong);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	transition: background-color 0.12s ease, border-color 0.12s ease;
}

.ee-chip:hover {
	border-color: var(--ink);
}

.ee-chip.is-on {
	background: var(--accent-soft);
	border-color: var(--accent);
	color: var(--accent);
}

.ee-chip-check {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
}

.ee-chip.is-on .ee-chip-check {
	color: var(--accent);
}

/* --------------------------------------------------------------- app shell */

.ee-app {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

.ee-topbar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(243, 245, 241, 0.94);
	backdrop-filter: saturate(150%) blur(8px);
	border-bottom: 1px solid var(--line);
}

.ee-topbar-inner {
	display: flex;
	align-items: center;
	gap: var(--s-sm);
	min-height: 58px;
	padding-inline: 16px;
	max-width: 1160px;
	margin: 0 auto;
}

.ee-brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.02em;
	color: var(--ink);
	text-decoration: none;
}

.ee-brand:hover {
	color: var(--ink);
	text-decoration: none;
}

.ee-mark {
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
}

.ee-topbar-spacer {
	flex: 1 1 auto;
}

.ee-main {
	flex: 1 1 auto;
	padding-bottom: calc(var(--tabbar) + 28px);
}

.ee-view {
	padding-block: var(--s-md) var(--s-lg);
}

.ee-view-head {
	margin-bottom: var(--s-md);
}

.ee-view-head h1 {
	font-size: clamp(26px, 4vw, 34px);
	margin-bottom: 4px;
}

.ee-view-head p {
	margin: 0;
	color: var(--muted);
}

/* bottom tab bar on phones */

.ee-tabbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: flex;
	background: var(--surface);
	border-top: 1px solid var(--line);
	padding-bottom: env(safe-area-inset-bottom);
}

.ee-tab {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: var(--tabbar);
	font-size: 10.5px;
	font-weight: 600;
	color: var(--muted);
	text-decoration: none;
	border: 0;
	background: none;
	cursor: pointer;
	font-family: var(--font-body);
}

.ee-tab:hover {
	color: var(--accent);
	text-decoration: none;
}

.ee-tab svg {
	width: 22px;
	height: 22px;
}

.ee-tab.is-on {
	color: var(--accent);
}

.ee-rail {
	display: none;
}

@media (min-width: 900px) {
	.ee-tabbar {
		display: none;
	}

	.ee-shell {
		display: grid;
		grid-template-columns: var(--rail) minmax(0, 1fr);
		gap: var(--s-lg);
		max-width: 1160px;
		margin: 0 auto;
		padding-inline: 20px;
		align-items: start;
	}

	.ee-rail {
		display: block;
		position: sticky;
		top: 78px;
		padding-top: var(--s-md);
	}

	.ee-rail-nav {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.ee-rail-link {
		display: flex;
		align-items: center;
		gap: 11px;
		padding: 11px 14px;
		border-radius: var(--r-pill);
		font-size: 14.5px;
		font-weight: 600;
		color: var(--ink);
		text-decoration: none;
	}

	.ee-rail-link:hover {
		background: var(--surface);
		text-decoration: none;
	}

	.ee-rail-link.is-on {
		background: var(--accent-soft);
		color: var(--accent);
	}

	.ee-rail-link svg {
		width: 20px;
		height: 20px;
		flex: 0 0 auto;
	}

	.ee-main {
		padding-bottom: var(--s-xl);
	}
}

/* --------------------------------------------------------------- meal card */

.ee-meals {
	display: grid;
	gap: var(--s-md);
	grid-template-columns: 1fr;
}

@media (min-width: 620px) {
	.ee-meals {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1040px) {
	.ee-meals-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ee-meal {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
}

.ee-meal-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--surface-sunk);
	overflow: hidden;
}

.ee-meal-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ee-meal-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: 6px;
	z-index: 2;
}

.ee-meal-slot {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
	padding: 5px 10px;
	border-radius: var(--r-sm);
	z-index: 2;
}

.ee-meal-body {
	padding: 14px 15px 16px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 9px;
}

.ee-meal-title {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.16;
	margin: 0;
	letter-spacing: -0.01em;
}

.ee-meal-title button,
.ee-meal-title a {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	text-align: left;
	cursor: pointer;
	text-decoration: none;
}

.ee-meal-title button:hover {
	color: var(--accent);
}

.ee-meal-line {
	font-size: 13.5px;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
}

.ee-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--line-strong);
	display: inline-block;
}

.ee-meal-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

/* macro micro bar */

.ee-macro {
	display: flex;
	height: 6px;
	border-radius: var(--r-pill);
	overflow: hidden;
	background: var(--surface-sunk);
}

.ee-macro span {
	display: block;
	height: 100%;
}

.ee-macro-p {
	background: var(--accent);
}

.ee-macro-c {
	background: var(--line-strong);
}

.ee-macro-f {
	background: var(--amber);
}

.ee-macro-key {
	display: flex;
	gap: 12px;
	font-size: 12.5px;
	color: var(--muted);
	flex-wrap: wrap;
}

.ee-macro-key b {
	color: var(--ink);
	font-weight: 600;
}

.ee-swatch {
	width: 9px;
	height: 9px;
	border-radius: 3px;
	display: inline-block;
	margin-right: 5px;
}

/* --------------------------------------------------------------- day strip */

.ee-days {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 6px;
	margin-bottom: var(--s-md);
	scrollbar-width: thin;
}

.ee-day {
	flex: 0 0 auto;
	min-width: 74px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 10px 12px;
	text-align: center;
	cursor: pointer;
	font-family: var(--font-body);
	color: var(--ink);
}

.ee-day:hover {
	border-color: var(--ink);
}

.ee-day.is-on {
	background: var(--accent-soft);
	border-color: var(--accent);
}

.ee-day-name {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted);
	display: block;
}

.ee-day.is-on .ee-day-name {
	color: var(--accent);
}

.ee-day-kcal {
	font-size: 15px;
	font-weight: 700;
	display: block;
	margin-top: 3px;
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------- dashboard */

.ee-stats {
	display: grid;
	gap: var(--s-sm);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: var(--s-md);
}

@media (min-width: 720px) {
	.ee-stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.ee-stat {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 14px 16px;
}

.ee-stat-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
	display: block;
	margin-bottom: 4px;
}

.ee-stat-value {
	font-family: var(--font-heading);
	font-size: 27px;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	display: block;
}

.ee-stat-value small {
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0;
}

.ee-stat-sub {
	font-size: 12.5px;
	color: var(--muted);
	margin-top: 3px;
	display: block;
}

.ee-stat-amber .ee-stat-value {
	color: var(--amber);
}

/* progress bars against a target */

.ee-target {
	margin-bottom: 12px;
}

.ee-target-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 13.5px;
	margin-bottom: 5px;
}

.ee-target-head b {
	font-weight: 600;
}

.ee-track {
	position: relative;
	height: 9px;
	border-radius: var(--r-pill);
	background: var(--accent-soft);
	overflow: hidden;
}

.ee-track-fill {
	position: absolute;
	inset: 0 auto 0 0;
	background: var(--accent);
	border-radius: var(--r-pill);
}

.ee-track-fill.is-amber {
	background: var(--amber);
}

.ee-track-mark {
	position: absolute;
	top: -3px;
	bottom: -3px;
	width: 2px;
	background: var(--ink);
	opacity: 0.45;
}

/* ---------------------------------------------------------- shopping list */

.ee-aisle {
	margin-bottom: var(--s-md);
}

.ee-aisle-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 4px;
}

.ee-aisle-head h3 {
	margin: 0;
	font-size: 15px;
	letter-spacing: 0;
}

.ee-shop-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 2px;
	border-bottom: 1px solid var(--line);
	cursor: pointer;
	width: 100%;
	background: none;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	text-align: left;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
}

.ee-shop-row:hover {
	background: var(--surface);
}

.ee-check {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border: 2px solid var(--line-strong);
	border-radius: 6px;
	position: relative;
	background: var(--surface);
}

.ee-shop-row.is-done .ee-check {
	background: var(--accent);
	border-color: var(--accent);
}

.ee-shop-row.is-done .ee-check::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 6px;
	height: 11px;
	border: solid #fff;
	border-width: 0 2.5px 2.5px 0;
	transform: rotate(42deg);
}

.ee-shop-name {
	flex: 1 1 auto;
}

.ee-shop-row.is-done .ee-shop-name,
.ee-shop-row.is-done .ee-qty {
	color: var(--muted);
	text-decoration: line-through;
}

.ee-qty {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
}

/* ------------------------------------------------------------------- chart */

.ee-chart {
	width: 100%;
	height: auto;
	display: block;
}

.ee-chart-axis {
	font-size: 11px;
	fill: var(--muted);
	font-family: var(--font-body);
}

/* -------------------------------------------------------------- meal sheet */

.ee-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(20, 33, 27, 0.42);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	overflow-y: auto;
	animation: ee-fade 0.16s ease;
}

@media (min-width: 760px) {
	.ee-overlay {
		align-items: flex-start;
		padding: 48px 20px;
	}
}

.ee-sheet {
	background: var(--surface);
	border-radius: var(--r-md) var(--r-md) 0 0;
	width: 100%;
	max-width: 720px;
	box-shadow: var(--lift);
	animation: ee-rise 0.2s ease;
	max-height: 94vh;
	overflow-y: auto;
	position: relative;
}

@media (min-width: 760px) {
	.ee-sheet {
		border-radius: var(--r-md);
		max-height: none;
	}
}

.ee-sheet-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
}

.ee-sheet-media {
	aspect-ratio: 16 / 10;
	background: var(--surface-sunk);
	overflow: hidden;
}

.ee-sheet-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ee-sheet-body {
	padding: clamp(18px, 3vw, 28px);
}

.ee-sheet-body h2 {
	font-size: clamp(22px, 3vw, 30px);
}

.ee-nutri {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	overflow: hidden;
	margin-bottom: var(--s-md);
}

.ee-nutri div {
	background: var(--surface);
	padding: 11px 8px;
	text-align: center;
}

.ee-nutri span {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}

.ee-nutri b {
	display: block;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	margin-top: 2px;
}

.ee-ing {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
}

.ee-ing:last-child {
	border-bottom: 0;
}

.ee-ing em {
	color: var(--muted);
	font-style: normal;
	font-size: 13.5px;
}

.ee-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: step;
}

.ee-steps li {
	counter-increment: step;
	position: relative;
	padding-left: 38px;
	margin-bottom: 14px;
	font-size: 15.5px;
}

.ee-steps li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	border-radius: var(--r-pill);
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-variant-numeric: tabular-nums;
}

@keyframes ee-fade {
	from {
		opacity: 0;
	}
}

@keyframes ee-rise {
	from {
		transform: translateY(16px);
		opacity: 0;
	}
}

/* ------------------------------------------------------- states and toasts */

.ee-skeleton {
	background: linear-gradient(100deg, var(--surface-sunk) 30%, #f6f7f4 50%, var(--surface-sunk) 70%);
	background-size: 240% 100%;
	animation: ee-shimmer 1.3s linear infinite;
	border-radius: var(--r-md);
}

@keyframes ee-shimmer {
	to {
		background-position: -240% 0;
	}
}

.ee-skel-card {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--surface);
}

.ee-skel-media {
	aspect-ratio: 4 / 3;
}

.ee-skel-line {
	height: 13px;
	margin: 12px 15px;
	border-radius: var(--r-pill);
}

.ee-empty {
	text-align: center;
	padding: clamp(28px, 6vw, 56px) 20px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
}

.ee-empty svg {
	width: 108px;
	height: 108px;
	margin-bottom: var(--s-sm);
}

.ee-empty h3 {
	margin-bottom: 6px;
}

.ee-empty p {
	margin-inline: auto;
	max-width: 44ch;
	color: var(--muted);
}

.ee-notice {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	padding: 13px 15px;
	border-radius: var(--r-md);
	background: var(--accent-soft);
	border: 1px solid var(--accent-soft-strong);
	font-size: 14.5px;
	margin-bottom: var(--s-md);
}

.ee-notice svg {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin-top: 2px;
	color: var(--accent);
}

.ee-notice-warn {
	background: var(--amber-soft);
	border-color: #ead9b6;
}

.ee-notice-warn svg {
	color: var(--amber);
}

.ee-notice-bad {
	background: var(--danger-soft);
	border-color: #eecec8;
}

.ee-notice-bad svg {
	color: var(--danger);
}

.ee-notice p {
	margin: 0;
	max-width: none;
}

.ee-toasts {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(var(--tabbar) + 16px);
	z-index: 120;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: calc(100% - 32px);
	max-width: 420px;
	pointer-events: none;
}

@media (min-width: 900px) {
	.ee-toasts {
		bottom: 24px;
	}
}

.ee-toast {
	background: var(--ink);
	color: #fff;
	padding: 12px 16px;
	border-radius: var(--r-md);
	font-size: 14.5px;
	box-shadow: var(--lift);
	animation: ee-rise 0.18s ease;
}

.ee-toast.is-bad {
	background: var(--danger);
}

.ee-spin {
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ee-rotate 0.7s linear infinite;
}

.ee-btn-secondary .ee-spin {
	border-color: var(--line-strong);
	border-top-color: var(--accent);
}

@keyframes ee-rotate {
	to {
		transform: rotate(360deg);
	}
}

/* --------------------------------------------------------------- onboarding */

.ee-onboard {
	max-width: 620px;
	margin: 0 auto;
	padding-block: var(--s-md) var(--s-xl);
}

.ee-steps-bar {
	display: flex;
	gap: 5px;
	margin-bottom: var(--s-md);
}

.ee-steps-bar span {
	flex: 1 1 0;
	height: 4px;
	border-radius: var(--r-pill);
	background: var(--line);
}

.ee-steps-bar span.is-on {
	background: var(--accent);
}

.ee-onboard-foot {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: var(--s-md);
}

.ee-onboard-foot .ee-btn {
	flex: 1 1 auto;
}

.ee-onboard-foot .ee-btn-ghost {
	flex: 0 0 auto;
}

/* ------------------------------------------------------------------- auth */

.ee-auth {
	max-width: 430px;
	margin: 0 auto;
	padding-block: var(--s-lg) var(--s-xl);
}

.ee-auth-switch {
	display: flex;
	gap: 4px;
	padding: 4px;
	background: var(--surface-sunk);
	border-radius: var(--r-pill);
	margin-bottom: var(--s-md);
}

.ee-auth-switch button {
	flex: 1 1 0;
	border: 0;
	background: none;
	font-family: var(--font-body);
	font-size: 14.5px;
	font-weight: 600;
	padding: 9px;
	border-radius: var(--r-pill);
	cursor: pointer;
	color: var(--muted);
}

.ee-auth-switch button.is-on {
	background: var(--surface);
	color: var(--ink);
	box-shadow: var(--lift-sm);
}

/* ------------------------------------------------------------------ tables */

.ee-list {
	border-top: 1px solid var(--line);
}

.ee-list-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
}

.ee-list-row > div:first-child {
	min-width: 0;
}

.ee-list-row strong {
	display: block;
	font-weight: 600;
	font-size: 15px;
}

/* --------------------------------------------------------- marketing pages */

.ee-site-head {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(243, 245, 241, 0.95);
	backdrop-filter: saturate(150%) blur(8px);
	border-bottom: 1px solid var(--line);
}

.ee-site-head-inner {
	display: flex;
	align-items: center;
	gap: var(--s-md);
	min-height: 66px;
	max-width: 1160px;
	margin: 0 auto;
	padding-inline: 20px;
}

.ee-site-nav {
	display: none;
	gap: var(--s-md);
	margin-left: auto;
	align-items: center;
}

.ee-site-nav a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
}

.ee-site-nav a:hover {
	color: var(--accent);
}

@media (min-width: 780px) {
	.ee-site-nav {
		display: flex;
	}
}

.ee-site-head-cta {
	margin-left: auto;
}

@media (min-width: 780px) {
	.ee-site-head-cta {
		margin-left: 0;
	}
}

.ee-hero {
	padding-block: clamp(32px, 6vw, 72px) clamp(28px, 5vw, 64px);
}

.ee-hero-grid {
	display: grid;
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
}

@media (min-width: 900px) {
	.ee-hero-grid {
		grid-template-columns: 1.02fr 0.98fr;
	}
}

.ee-hero h1 {
	margin-bottom: var(--s-md);
}

.ee-hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: var(--s-md);
}

.ee-hero-note {
	font-size: 13.5px;
	color: var(--muted);
	margin-top: 12px;
}

/* The hero image bleeds past the container on wide screens. */

.ee-hero-art {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 5 / 4;
	background: var(--surface-sunk);
}

.ee-hero-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ee-hero-art-stack {
	position: relative;
}

.ee-hero-art-stack .ee-hero-art:nth-child(2) {
	position: absolute;
	width: 42%;
	aspect-ratio: 1;
	bottom: -22px;
	left: -22px;
	border-radius: var(--r-md);
	border: 6px solid var(--bg);
}

@media (min-width: 1200px) {
	.ee-hero-bleed {
		margin-right: calc((100vw - 1160px) / -2);
	}
}

.ee-section {
	padding-block: clamp(34px, 6vw, 72px);
}

.ee-section-tight {
	padding-block: clamp(24px, 4vw, 48px);
}

.ee-section-sunk {
	background: var(--surface);
	border-block: 1px solid var(--line);
}

.ee-split {
	display: grid;
	gap: clamp(22px, 4vw, 52px);
	align-items: center;
}

@media (min-width: 880px) {
	.ee-split {
		grid-template-columns: 1fr 1fr;
	}

	.ee-split-wide-left {
		grid-template-columns: 1.25fr 0.75fr;
	}

	.ee-split-wide-right {
		grid-template-columns: 0.75fr 1.25fr;
	}

	.ee-split-flip > *:first-child {
		order: 2;
	}
}

/* A very large figure set against small text. */

.ee-figure-big {
	font-family: var(--font-heading);
	font-size: clamp(64px, 13vw, 148px);
	font-weight: 700;
	line-height: 0.88;
	letter-spacing: -0.04em;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
	display: block;
}

.ee-figure-label {
	font-size: 15px;
	color: var(--muted);
	max-width: 30ch;
	margin-top: var(--s-sm);
}

.ee-bento {
	display: grid;
	gap: var(--s-md);
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.ee-bento {
		grid-template-columns: repeat(6, 1fr);
	}

	.ee-bento > *:nth-child(1) {
		grid-column: span 4;
	}

	.ee-bento > *:nth-child(2) {
		grid-column: span 2;
	}

	.ee-bento > *:nth-child(3) {
		grid-column: span 2;
	}

	.ee-bento > *:nth-child(4) {
		grid-column: span 4;
	}

	.ee-bento > *:nth-child(5) {
		grid-column: span 3;
	}

	.ee-bento > *:nth-child(6) {
		grid-column: span 3;
	}
}

.ee-bento-cell {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: clamp(18px, 2.6vw, 26px);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ee-bento-cell h3 {
	margin: 0;
}

.ee-bento-cell p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
}

.ee-bento-tint {
	background: var(--accent-soft);
	border-color: var(--accent-soft-strong);
}

.ee-bento-ink {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.ee-bento-ink h3,
.ee-bento-ink p {
	color: #fff;
}

.ee-bento-ink p {
	opacity: 0.78;
}

.ee-steps-flow {
	display: grid;
	gap: var(--s-md);
	counter-reset: flow;
}

@media (min-width: 760px) {
	.ee-steps-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.ee-flow-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding-top: var(--s-sm);
	border-top: 1px solid var(--line);
}

.ee-flow-num {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	color: var(--accent);
	background: var(--accent-soft);
	width: 28px;
	height: 28px;
	border-radius: var(--r-pill);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	font-variant-numeric: tabular-nums;
}

.ee-flow-item h3 {
	font-size: 17px;
	margin-bottom: 3px;
}

.ee-flow-item p {
	margin: 0;
	font-size: 14.5px;
	color: var(--muted);
}

/* pricing */

.ee-plans {
	display: grid;
	gap: var(--s-md);
	align-items: start;
}

@media (min-width: 760px) {
	.ee-plans {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.ee-plan {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: clamp(20px, 3vw, 30px);
}

.ee-plan.is-featured {
	border-color: var(--accent);
	border-width: 2px;
}

.ee-plan-price {
	font-family: var(--font-heading);
	font-size: clamp(38px, 6vw, 54px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	display: block;
	margin-block: 6px 2px;
}

.ee-plan-per {
	font-size: 14.5px;
	color: var(--muted);
}

.ee-features {
	list-style: none;
	padding: 0;
	margin: var(--s-md) 0 0;
}

.ee-features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 15px;
	margin-bottom: 10px;
}

.ee-features svg {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: var(--accent);
	margin-top: 3px;
}

.ee-faq details {
	border-top: 1px solid var(--line);
	padding: 15px 0;
}

.ee-faq details:last-of-type {
	border-bottom: 1px solid var(--line);
}

.ee-faq summary {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 17px;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
}

.ee-faq summary::-webkit-details-marker {
	display: none;
}

.ee-faq summary::after {
	content: "+";
	font-size: 22px;
	font-weight: 400;
	color: var(--muted);
	line-height: 1;
}

.ee-faq details[open] summary::after {
	content: "\2013";
}

.ee-faq details p {
	margin: 10px 0 0;
	color: var(--muted);
}

/* footer */

.ee-site-foot {
	border-top: 1px solid var(--line);
	padding-block: var(--s-lg);
	margin-top: var(--s-lg);
}

.ee-site-foot-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-md);
	justify-content: space-between;
	align-items: flex-start;
}

.ee-site-foot a {
	color: var(--muted);
	font-size: 14px;
	text-decoration: none;
	display: block;
	margin-bottom: 7px;
}

.ee-site-foot a:hover {
	color: var(--accent);
}

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

/* prose blocks for privacy and terms */

.ee-prose {
	max-width: var(--measure);
}

.ee-prose h2 {
	margin-top: var(--s-lg);
}

.ee-prose h3 {
	margin-top: var(--s-md);
}

.ee-prose p,
.ee-prose li {
	font-size: 16.5px;
}

/* -------------------------------------------------------------- utilities */

.ee-stack > * + * {
	margin-top: var(--s-md);
}

.ee-stack-sm > * + * {
	margin-top: var(--s-sm);
}

.ee-flex {
	display: flex;
	gap: var(--s-sm);
	align-items: center;
	flex-wrap: wrap;
}

.ee-flex-between {
	justify-content: space-between;
}

.ee-mt {
	margin-top: var(--s-md);
}

.ee-mb {
	margin-bottom: var(--s-md);
}

.ee-mb-lg {
	margin-bottom: var(--s-lg);
}

.ee-hide {
	display: none !important;
}

.ee-muted {
	color: var(--muted);
}

.ee-right {
	text-align: right;
}

.ee-grow {
	flex: 1 1 auto;
	min-width: 0;
}

.ee-nowrap {
	white-space: nowrap;
}

.ee-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ee-scroll-x {
	overflow-x: auto;
}

@media (prefers-reduced-motion: reduce) {
	body.ee *,
	body.ee *::before,
	body.ee *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.ee-skeleton {
		animation: none;
		background: var(--surface-sunk);
	}
}

@media print {
	.ee-topbar,
	.ee-tabbar,
	.ee-rail,
	.ee-btn,
	.ee-toasts {
		display: none !important;
	}

	body.ee {
		background: #fff;
	}

	.ee-shop-row {
		break-inside: avoid;
	}
}

/* =========================================================== vivid refresh */

/*
 * The page used to be almost entirely white cards on a pale ground, which read
 * as clean but flat. This layer adds the colour: a deep gradient hero, alternating
 * bands so sections separate without borders, and accents that actually carry
 * the brand green rather than only hinting at it.
 *
 * It is appended deliberately, so every rule below is an override of the base
 * above and can be removed wholesale without breaking the layout underneath.
 */

/* ---------------------------------------------------------------- the hero */

body.ee .ee-hero {
	position: relative;
	background: var(--grad-deep);
	color: #f2fbf4;
	overflow: hidden;
	border-radius: 0 0 var(--r-lg) var(--r-lg);
}

/* A soft lime bloom behind the copy, so the dark panel has depth rather than
   being a flat rectangle. */
body.ee .ee-hero::before {
	content: "";
	position: absolute;
	inset: -40% 45% 30% -20%;
	background: radial-gradient(closest-side, rgba(163, 230, 53, 0.4), transparent 70%);
	pointer-events: none;
}

body.ee .ee-hero::after {
	content: "";
	position: absolute;
	inset: 20% -25% -50% 40%;
	background: radial-gradient(closest-side, rgba(27, 163, 80, 0.45), transparent 70%);
	pointer-events: none;
}

body.ee .ee-hero > * {
	position: relative;
	z-index: 1;
}

body.ee .ee-hero h1 {
	color: #ffffff;
	letter-spacing: -0.02em;
}

body.ee .ee-hero .ee-lede,
body.ee .ee-hero .ee-hero-note {
	color: rgba(238, 252, 241, 0.86);
}

body.ee .ee-hero .ee-eyebrow {
	color: var(--lime);
}

/* The hero's own secondary button sits on dark, so the default bone styling
   would disappear into the panel. */
body.ee .ee-hero .ee-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

body.ee .ee-hero .ee-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.65);
}

body.ee .ee-hero .ee-hero-art {
	border-radius: var(--r-lg);
	box-shadow: 0 24px 60px rgba(3, 20, 12, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.14);
	overflow: hidden;
}

/* --------------------------------------------------------- section rhythm */

/* Alternating grounds do the work that borders used to, and stop the long
   marketing page reading as one continuous sheet of white. */
body.ee .ee-section-sunk {
	background: var(--grad-mint);
	border-block: 1px solid var(--accent-soft-strong);
}

body.ee .ee-figure-big {
	background: var(--grad-lime);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 800;
	letter-spacing: -0.03em;
}

body.ee .ee-eyebrow {
	color: var(--accent);
	font-weight: 700;
	letter-spacing: 0.08em;
}

/* ------------------------------------------------------------- the buttons */

body.ee .ee-btn {
	background: var(--grad-accent);
	border: 0;
	box-shadow: 0 6px 18px rgba(21, 128, 61, 0.28);
	transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.ee .ee-btn:hover {
	filter: saturate(115%) brightness(1.04);
	box-shadow: 0 10px 26px rgba(21, 128, 61, 0.36);
	transform: translateY(-1px);
}

body.ee .ee-btn:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}

body.ee .ee-btn-secondary,
body.ee .ee-btn-ghost {
	background: var(--surface);
	box-shadow: none;
	border: 1px solid var(--line-strong);
	color: var(--accent);
}

body.ee .ee-btn-secondary:hover,
body.ee .ee-btn-ghost:hover {
	background: var(--accent-soft);
	border-color: var(--accent);
	filter: none;
	transform: none;
	box-shadow: none;
}

/* --------------------------------------------------------------- surfaces */

body.ee .ee-card {
	border-radius: var(--r-md);
	box-shadow: 0 1px 2px rgba(6, 40, 26, 0.04), 0 8px 24px rgba(6, 40, 26, 0.06);
}

body.ee .ee-meal {
	overflow: hidden;
	transition: transform 0.16s ease, box-shadow 0.2s ease;
}

body.ee .ee-meal:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(6, 40, 26, 0.14);
}

/* A warm wash over the dish image so the photography ties to the palette
   instead of each card pulling in its own direction. */
body.ee .ee-meal-media {
	position: relative;
	background: var(--grad-mint);
}

body.ee .ee-meal-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(6, 40, 26, 0.14) 100%);
	pointer-events: none;
}

/* ------------------------------------------------------- tags, chips, tone */

body.ee .ee-tag {
	background: var(--accent-soft);
	color: var(--accent);
	border: 1px solid var(--accent-soft-strong);
	font-weight: 650;
}

body.ee .ee-tag-quiet {
	background: var(--lime-soft);
	color: var(--lime-deep);
	border-color: #d9f0a8;
}

body.ee .ee-chip.is-on {
	background: var(--grad-accent);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
}

body.ee .ee-num {
	color: var(--accent);
	font-weight: 700;
}

/* ------------------------------------------------------------ the app rail */

body.ee .ee-rail-link.is-on,
body.ee .ee-tab.is-on {
	color: var(--accent);
}

body.ee .ee-rail-link.is-on {
	background: var(--accent-soft);
	box-shadow: inset 3px 0 0 var(--accent);
}

body.ee .ee-stat-value {
	color: var(--accent);
}

/* ------------------------------------------------------- the code redeemer */

body.ee .ee-codebox {
	background: var(--grad-mint);
	border: 1px solid var(--accent-soft-strong);
	position: relative;
	overflow: hidden;
}

body.ee .ee-codebox::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: var(--grad-lime);
}

body.ee .ee-codebox h3 {
	color: var(--ink-deep);
}

/* ------------------------------------------------------------- the pricing */

body.ee .ee-plan.is-featured {
	background: var(--grad-deep);
	color: #f2fbf4;
	border-color: transparent;
	box-shadow: 0 20px 48px rgba(6, 40, 26, 0.3);
}

body.ee .ee-plan.is-featured h3,
body.ee .ee-plan.is-featured .ee-plan-price,
body.ee .ee-plan.is-featured .ee-num {
	color: #ffffff;
}

body.ee .ee-plan.is-featured .ee-plan-per,
body.ee .ee-plan.is-featured .ee-meta,
body.ee .ee-plan.is-featured .ee-muted {
	color: rgba(238, 252, 241, 0.82);
}

body.ee .ee-plan.is-featured .ee-tag {
	background: var(--lime);
	color: var(--ink-deep);
	border-color: transparent;
}

body.ee .ee-plan.is-featured .ee-btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
	color: #ffffff;
}

/* --------------------------------------------------------------- the chrome */

body.ee .ee-site-head {
	background: rgba(238, 244, 234, 0.92);
	border-bottom-color: var(--accent-soft-strong);
}

body.ee .ee-flow-num {
	background: var(--grad-accent);
	color: #ffffff;
	border: 0;
	box-shadow: 0 6px 16px rgba(21, 128, 61, 0.3);
}

/* Respect a reduced-motion preference: the lifts above are decoration. */
@media (prefers-reduced-motion: reduce) {
	body.ee .ee-btn,
	body.ee .ee-meal {
		transition: none;
	}

	body.ee .ee-btn:hover,
	body.ee .ee-meal:hover {
		transform: none;
	}
}

/* ------------------------------------------------- contrast on dark panels */

/*
 * The dish illustrations are deliberately dark and moody, which is right on a
 * light card and wrong on the dark hero, where they sink into the panel. A
 * bright rim and a deeper shadow lift them back off it.
 */
body.ee .ee-hero .ee-hero-art {
	border: 1px solid rgba(255, 255, 255, 0.42);
	box-shadow:
		0 0 0 6px rgba(255, 255, 255, 0.06),
		0 28px 64px rgba(2, 14, 8, 0.55);
}

/*
 * The featured plan sits on the same deep gradient as the hero, so a green
 * button on it is the quietest thing on the page rather than the loudest.
 * Lime against the dark card makes the primary action unmistakable.
 */
body.ee .ee-plan.is-featured .ee-btn:not(.ee-btn-secondary):not(.ee-btn-ghost) {
	background: var(--grad-lime);
	color: var(--ink-deep);
	font-weight: 700;
	box-shadow: 0 8px 22px rgba(163, 230, 53, 0.32);
}

body.ee .ee-plan.is-featured .ee-btn:not(.ee-btn-secondary):not(.ee-btn-ghost):hover {
	box-shadow: 0 12px 30px rgba(163, 230, 53, 0.44);
}
