:root {
  color-scheme: light;
  --ink: #15201a;
  --muted: #647067;
  --paper: #fffdf7;
  --white: #ffffff;
  --cream: #fff2d7;
  --mint: #e6f8e6;
  --leaf: #20b96d;
  --leaf-dark: #087044;
  --lime: #b7e23a;
  --tomato: #ef4d38;
  --pepper: #ffcf33;
  --carrot: #ff8c2b;
  --beet: #c33475;
  --berry: #7e4be8;
  --aqua: #26a6c8;
  --sky: #dff4ff;
  --line: rgba(21, 32, 26, 0.14);
  --shadow: 0 24px 70px rgba(21, 32, 26, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: var(--pepper);
  color: var(--ink);
}

a {
  color: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  color: var(--leaf-dark);
}

.brand strong {
  color: var(--leaf);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: #4f6156;
  font-size: 14px;
  font-weight: 800;
}

nav a,
.nav-cta {
  text-decoration: none;
}

.nav-cta {
  min-width: 78px;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px) clamp(58px, 8vw, 100px);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.94) 43%, rgba(255, 253, 247, 0.74) 100%),
    url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=2100&q=84");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: linear-gradient(90deg, var(--leaf), var(--lime), var(--pepper), var(--carrot), var(--tomato), var(--beet), var(--aqua));
}

.hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  border: 8px solid rgba(255, 255, 255, 0.86);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.hero__photo--main {
  right: clamp(18px, 5vw, 72px);
  top: 86px;
  width: min(28vw, 390px);
  min-width: 260px;
  aspect-ratio: 1.05;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=900&q=84");
  transform: rotate(4deg);
}

.hero__photo--side {
  right: min(27vw, 430px);
  bottom: 72px;
  width: min(20vw, 280px);
  min-width: 190px;
  aspect-ratio: 0.86;
  border-radius: 24px;
  background-image: url("https://images.unsplash.com/photo-1540420773420-3366772f4999?auto=format&fit=crop&w=720&q=84");
  transform: rotate(-7deg);
}

.produce {
  position: absolute;
  border-radius: 999px;
  filter: drop-shadow(0 18px 36px rgba(21, 32, 26, 0.16));
}

.produce--tomato {
  left: 5%;
  bottom: 86px;
  width: 86px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.62) 0 9%, transparent 10%),
    radial-gradient(circle at 50% 55%, #ff6750 0 45%, #c62f26 46% 68%, transparent 69%);
}

.produce--pea {
  left: 45%;
  top: 130px;
  width: 120px;
  height: 44px;
  background:
    radial-gradient(circle at 22% 50%, #d8ff69 0 15%, transparent 16%),
    radial-gradient(circle at 48% 50%, #d8ff69 0 15%, transparent 16%),
    radial-gradient(circle at 74% 50%, #d8ff69 0 15%, transparent 16%),
    #159b55;
  transform: rotate(-15deg);
}

.produce--carrot {
  right: 12%;
  bottom: 26px;
  width: 150px;
  height: 50px;
  background:
    linear-gradient(90deg, #ff9c2e, #f46021),
    linear-gradient(90deg, #1d944f, #84d441);
  border-radius: 80% 20% 20% 80%;
  transform: rotate(13deg);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  font-size: clamp(46px, 7.4vw, 94px);
  line-height: 0.96;
}

h2 {
  max-width: 860px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
}

h3 {
  font-size: 21px;
  line-height: 1.24;
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  color: #34483a;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.56;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(21, 32, 26, 0.1);
}

.button--primary {
  border-color: var(--leaf);
  background: var(--leaf);
  color: #042715;
}

.button--light {
  background: rgba(255, 255, 255, 0.86);
}

.button--dark {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--white);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 28px;
}

.hero__proof span {
  padding: 10px 12px;
  border: 1px solid rgba(8, 112, 68, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #214d36;
  font-size: 14px;
  font-weight: 850;
}

.hero-card {
  position: relative;
  z-index: 3;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(100%, 365px);
  aspect-ratio: 9 / 18.4;
  padding: 10px;
  border-radius: 34px;
  background: #0f1f17;
  box-shadow: 0 28px 80px rgba(14, 25, 18, 0.32);
}

.phone__status {
  display: flex;
  justify-content: space-between;
  height: 44px;
  padding: 16px 18px 0;
  color: #ffffff;
  border-radius: 24px 24px 0 0;
  background: #132b20;
  font-size: 13px;
  font-weight: 850;
}

.camera-preview {
  position: relative;
  height: 318px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.46)),
    url("https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=900&q=82");
  background-position: center;
  background-size: cover;
}

.corner {
  position: absolute;
  width: 58px;
  height: 58px;
  border-color: var(--lime);
}

.corner--tl {
  left: 28px;
  top: 28px;
  border-left: 5px solid;
  border-top: 5px solid;
  border-top-left-radius: 18px;
}

.corner--tr {
  right: 28px;
  top: 28px;
  border-right: 5px solid;
  border-top: 5px solid;
  border-top-right-radius: 18px;
}

.corner--bl {
  left: 28px;
  bottom: 28px;
  border-left: 5px solid;
  border-bottom: 5px solid;
  border-bottom-left-radius: 18px;
}

.corner--br {
  right: 28px;
  bottom: 28px;
  border-right: 5px solid;
  border-bottom: 5px solid;
  border-bottom-right-radius: 18px;
}

.scan-line {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 164px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffffff, var(--lime), transparent);
  box-shadow: 0 0 22px rgba(183, 226, 58, 0.8);
}

.result-panel {
  height: calc(100% - 362px);
  padding: 18px;
  border-radius: 0 0 24px 24px;
  background: #ffffff;
}

.result-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.result-panel h2 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.macro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.macro-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  border-radius: 8px;
  background: var(--mint);
  color: #205237;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.macro-grid strong {
  display: block;
  font-size: 18px;
}

.result-panel button,
.app-screen button {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 900;
}

.floating-note {
  position: absolute;
  width: 186px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 48px rgba(21, 32, 26, 0.14);
  backdrop-filter: blur(15px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.floating-note--top {
  left: 0;
  top: 124px;
}

.floating-note--bottom {
  right: 0;
  bottom: 112px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--white);
  color: #4f6156;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:nth-child(2n) {
  background: var(--mint);
}

.ticker span:nth-child(3n) {
  background: var(--cream);
}

.ticker span:nth-child(5n) {
  background: var(--sky);
}

.section,
.app-section,
.vegetable-section,
.personas,
.comparison,
.trust,
.beta-roadmap,
.final-cta {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p:not(.eyebrow),
.app-copy p,
.trust-copy p,
.final-cta p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.flow-section {
  background: linear-gradient(180deg, #fff6e5, #fffdf7);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-card,
.persona-grid article,
.pricing article,
.trust-grid article,
.roadmap-grid article,
.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flow-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 18px 50px rgba(21, 32, 26, 0.08);
}

.flow-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.step {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 950;
}

.flow-card:nth-child(2) .step {
  background: var(--leaf-dark);
}

.flow-card:nth-child(3) .step {
  background: var(--tomato);
}

.flow-card:nth-child(4) .step {
  background: var(--aqua);
}

.flow-card h3,
.flow-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.flow-card h3 {
  margin-top: 22px;
}

.flow-card p,
.persona-grid p,
.persona-grid li,
.pricing p,
.pricing li,
.trust-grid span,
.comparison-grid p,
.roadmap-grid p,
.faq p {
  color: var(--muted);
  line-height: 1.62;
}

.flow-card p {
  margin-top: 10px;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(115deg, rgba(19, 43, 32, 0.93), rgba(19, 43, 32, 0.76)),
    url("https://images.unsplash.com/photo-1505576399279-565b52d4ac71?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.app-section .eyebrow {
  color: #a8f275;
}

.app-copy p {
  color: rgba(255, 255, 255, 0.77);
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
}

.check-list span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 850;
}

.screen-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.app-screen {
  min-height: 470px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: #fffdf7;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.app-screen:nth-child(2) {
  transform: translateY(-28px);
}

.app-screen header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  font-size: 13px;
  color: var(--muted);
}

.app-screen header strong {
  color: var(--ink);
}

.rings {
  position: relative;
  display: grid;
  place-items: center;
  height: 168px;
  margin: 12px 0 20px;
}

.rings span {
  position: absolute;
  border-radius: 50%;
}

.rings span:nth-child(1) {
  width: 158px;
  aspect-ratio: 1;
  border: 18px solid var(--leaf);
  border-right-color: #e1eadf;
}

.rings span:nth-child(2) {
  width: 112px;
  aspect-ratio: 1;
  border: 14px solid var(--carrot);
  border-bottom-color: #f5e4d3;
}

.rings span:nth-child(3) {
  width: 70px;
  aspect-ratio: 1;
  border: 10px solid var(--beet);
  border-left-color: #eadbe3;
}

.meal-row,
.ingredient,
.profile-line {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #f5f3eb;
}

.meal-row {
  grid-template-columns: 1fr auto;
}

.meal-row strong,
.meal-row span {
  grid-column: 1;
}

.meal-row span,
.profile-line span {
  color: var(--muted);
  font-size: 13px;
}

.meal-row b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.ingredient {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 60px;
}

.ingredient--green {
  background: #dff6df;
}

.ingredient--orange {
  background: #fff0d0;
}

.ingredient--red {
  background: #ffe2db;
}

.slider {
  height: 8px;
  margin: 22px 0 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e2d7;
}

.slider span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--pepper), var(--tomato));
}

.profile-line {
  grid-template-columns: 1fr auto;
}

.privacy-pill {
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  background: #132b20;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.vegetable-section {
  background: var(--paper);
}

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.produce-grid article {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(21, 32, 26, 0.08);
}

.produce-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.produce-grid strong,
.produce-grid span {
  display: block;
  padding-right: 18px;
  padding-left: 18px;
}

.produce-grid strong {
  margin-top: 18px;
  font-size: 19px;
}

.produce-grid span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.personas {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 253, 247, 0.85)),
    url("https://images.unsplash.com/photo-1490818387583-1baba5e638af?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
}

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

.persona-grid article {
  min-height: 430px;
  padding: 28px;
}

.persona-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 22px;
}

.persona-icon--green {
  background:
    radial-gradient(circle at 68% 36%, #ffffff 0 12%, transparent 13%),
    linear-gradient(135deg, var(--leaf), var(--lime));
}

.persona-icon--orange {
  background:
    radial-gradient(circle at 34% 64%, #ffffff 0 11%, transparent 12%),
    linear-gradient(135deg, var(--pepper), var(--carrot));
}

.persona-icon--red {
  background:
    radial-gradient(circle at 66% 66%, #ffffff 0 10%, transparent 11%),
    linear-gradient(135deg, var(--tomato), var(--beet));
}

.persona-grid p {
  margin-top: 12px;
}

.persona-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.persona-grid li,
.pricing li {
  padding-left: 23px;
  background: linear-gradient(var(--leaf), var(--leaf)) left 0.72em / 9px 9px no-repeat;
}

.comparison {
  background: #12231a;
  color: var(--white);
}

.comparison .eyebrow {
  color: #a8f275;
}

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

.comparison-grid article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.comparison-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.comparison-card--accent {
  background: linear-gradient(145deg, var(--leaf), var(--lime)) !important;
  color: #062715;
}

.comparison-card--accent p {
  color: #123f26;
}

.pricing-section {
  background: linear-gradient(180deg, var(--mint), #fffdf7);
}

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

.pricing article {
  position: relative;
  min-height: 430px;
  padding: 28px;
  box-shadow: 0 20px 56px rgba(21, 32, 26, 0.08);
}

.pricing .plan {
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing h3 {
  margin-top: 12px;
  font-size: 40px;
}

.pricing p:not(.plan) {
  margin-top: 14px;
}

.pricing ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing .featured {
  border-color: rgba(32, 185, 109, 0.66);
  transform: translateY(-12px);
  box-shadow: 0 28px 74px rgba(32, 185, 109, 0.2);
}

.pricing .featured::before {
  content: "Najlepszy do testów";
  position: absolute;
  top: 18px;
  right: 18px;
  max-width: 128px;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--pepper);
  color: #302001;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  background: #ffffff;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-links a {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

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

.trust-grid article {
  min-height: 190px;
  padding: 23px;
  background: linear-gradient(180deg, #ffffff, #fff7e8);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.beta-roadmap {
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.72)),
    url("https://images.unsplash.com/photo-1476718406336-bb5a9690ee2a?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.roadmap-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #e7eadf;
  color: #4d5a50;
  font-weight: 950;
}

.roadmap-grid strong {
  display: block;
  font-size: 19px;
}

.roadmap-grid p {
  margin-top: 10px;
}

.roadmap-grid .done span {
  background: var(--leaf);
  color: #052715;
}

.roadmap-grid .active {
  border-color: rgba(255, 140, 43, 0.7);
  box-shadow: 0 20px 56px rgba(255, 140, 43, 0.16);
}

.roadmap-grid .active span {
  background: var(--carrot);
  color: #381b00;
}

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 960px;
}

details {
  padding: 21px 0;
  border-bottom: 1px solid rgba(21, 32, 26, 0.16);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

details p {
  max-width: 790px;
  margin-top: 12px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(110deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0.68)),
    url("https://images.unsplash.com/photo-1566385101042-1a0aa0c1268c?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
}

.final-cta div {
  max-width: 860px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #101813;
  color: rgba(255, 255, 255, 0.72);
}

.brand--footer {
  color: #ffffff;
}

footer p {
  margin-top: 6px;
}

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

.footer-links a {
  text-decoration: none;
}

.legal-page {
  background: #fffdf7;
}

.legal {
  max-width: 980px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.legal h1 {
  max-width: 860px;
  font-size: clamp(42px, 5.8vw, 72px);
}

.legal section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal section:first-of-type {
  margin-top: 24px;
}

.legal h2 {
  font-size: clamp(25px, 3vw, 34px);
}

.legal section p {
  max-width: 820px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal a {
  color: var(--leaf-dark);
  font-weight: 850;
}

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

  .hero__photo--main,
  .hero__photo--side {
    opacity: 0.45;
  }

  .hero-card {
    min-height: 560px;
  }

  .app-section,
  .trust {
    grid-template-columns: 1fr;
  }

  .flow-grid,
  .produce-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screen-wall {
    max-width: 860px;
  }
}

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

  nav {
    display: none;
  }

  .ticker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .persona-grid,
  .comparison-grid,
  .pricing,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pricing .featured {
    transform: none;
  }

  .pricing .featured::before {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .screen-wall {
    grid-template-columns: 1fr;
  }

  .app-screen,
  .app-screen:nth-child(2) {
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero__photo,
  .produce,
  .floating-note {
    display: none;
  }

  .hero-card {
    min-height: auto;
  }

  .phone {
    width: min(100%, 330px);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__proof span {
    width: 100%;
  }

  .ticker,
  .flow-grid,
  .produce-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 52px;
  }

  .camera-preview {
    height: 290px;
  }

  .result-panel h2 {
    font-size: 22px;
  }

  .final-cta,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
