:root {
  color-scheme: light;
  --ink: #17140f;
  --muted: #635f55;
  --paper: #f7f4ea;
  --chalk: #fffdf7;
  --line: #d5cab8;
  --teal: #0d7c68;
  --lime: #d8ff48;
  --violet: #6544f5;
  --coral: #f56f46;
  --shadow: 0 34px 100px rgba(23, 20, 15, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 20, 15, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 20, 15, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #fffdf7 0%, var(--paper) 47%, #e7f0dc 100%);
  background-size: 44px 44px, 44px 44px, auto;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0 2rem;
  background: rgba(255, 253, 247, 0.72);
  border-bottom: 1px solid rgba(23, 20, 15, 0.08);
  backdrop-filter: blur(18px);
}
.brand,
.site-header nav {
  display: flex;
  align-items: center;
}
.brand {
  gap: 0.72rem;
  font-weight: 850;
  text-decoration: none;
}
.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
}
.site-header nav {
  gap: 1.15rem;
}
.site-header nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 160ms ease;
}
.site-header nav a:hover {
  color: var(--ink);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  min-height: 100svh;
  padding: 6.5rem clamp(1.4rem, 5vw, 5rem) 3rem;
  overflow: hidden;
}
.hero-copy {
  max-width: 52rem;
  animation: rise-in 680ms ease both;
}
.eyebrow,
.product-kicker {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 9ch;
  margin-bottom: 1.4rem;
  font-size: clamp(4.35rem, 14vw, 11rem);
  line-height: 0.84;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  line-height: 1.5;
}
.hero-actions,
.contact {
  display: flex;
  align-items: center;
}
.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
}
.button,
.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 7px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
.button:hover,
.product-link:hover {
  transform: translateY(-1px);
}
.button-dark {
  color: var(--chalk);
  background: var(--ink);
}
.button-plain {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.68);
  border: 1px solid var(--line);
}
.hero-visual {
  position: relative;
  display: grid;
  min-height: 38rem;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6rem 2rem 3rem;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(216, 255, 72, 0.78), rgba(13, 124, 104, 0.46)),
    var(--lime);
  border-radius: 999px;
  filter: blur(4px);
  transform: rotate(-13deg);
}
.preview {
  position: absolute;
  display: block;
  overflow: hidden;
  color: var(--chalk);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}
.preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(23, 20, 15, 0.08);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}
.preview:hover {
  transform: translateY(-5px) rotate(0deg);
  box-shadow: 0 42px 110px rgba(23, 20, 15, 0.26);
}
.preview-linggen {
  top: 1rem;
  right: 9%;
  width: min(28rem, 78%);
  aspect-ratio: 1.44;
  border-radius: 24px;
  transform: rotate(5deg);
  animation: drift-left 760ms ease both;
}
.preview-zappi {
  left: 0;
  bottom: 2.2rem;
  width: min(30rem, 88%);
  aspect-ratio: 1.88;
  border-radius: 18px;
  transform: rotate(-5deg);
  animation: drift-right 860ms ease both;
}
.intro {
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1.4rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.56);
}
.intro p {
  max-width: 62rem;
  margin: 0;
  font-size: clamp(1.55rem, 3.6vw, 4.2rem);
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
}
.products {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.4rem, 5vw, 5rem);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}
.product {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
}
.product:last-child {
  border-bottom: 1px solid var(--line);
}
.product-zappi {
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1fr);
}
.product-zappi .product-media {
  order: 2;
}
.product-media {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(23, 20, 15, 0.12);
  box-shadow: var(--shadow);
}
.product-linggen .product-media {
  aspect-ratio: 1.44;
  border-radius: 18px;
}
.product-zappi .product-media {
  aspect-ratio: 1.44;
  border-radius: 18px;
}
.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}
.product:hover .product-media img {
  transform: scale(1.035);
}
.product-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.86;
  letter-spacing: 0;
}
.product-copy p {
  max-width: 37rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}
.product-copy ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.55rem 0 1.8rem;
  padding: 0;
  list-style: none;
}
.product-copy li {
  display: flex;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}
.product-copy li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 999px;
}
.product-zappi .product-copy li::before {
  background: var(--violet);
}
.product-link {
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(23, 20, 15, 0.18);
}
.contact {
  flex-direction: column;
  justify-content: center;
  min-height: 25rem;
  padding: clamp(3rem, 8vw, 7rem) 1.4rem;
  text-align: center;
  background: var(--ink);
  color: var(--chalk);
}
.contact .eyebrow {
  color: var(--lime);
}
.contact h2 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.93;
  letter-spacing: 0;
}
.contact a {
  color: var(--lime);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 820;
  text-decoration: none;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drift-left {
  from {
    opacity: 0;
    transform: translate(18px, 14px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(5deg);
  }
}
@keyframes drift-right {
  from {
    opacity: 0;
    transform: translate(-18px, 18px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-5deg);
  }
}
@media (max-width: 900px) {
  .site-header {
    padding: 0 1.1rem;
  }
  .hero,
  .section-heading,
  .product,
  .product-zappi {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 6rem;
  }
  .hero-visual {
    min-height: 30rem;
  }
  .product-zappi .product-media {
    order: 0;
  }
}
@media (max-width: 560px) {
  .site-header {
    justify-content: flex-start;
    gap: 1.35rem;
    max-width: 100vw;
  }
  .site-header nav {
    gap: 0.8rem;
  }
  .brand span {
    display: none;
  }
  h1 {
    font-size: clamp(3.8rem, 18vw, 4.8rem);
  }
  .hero {
    width: 100vw;
    max-width: 100vw;
  }
  .hero-copy,
  .hero-lede,
  .intro p,
  .section-heading h2,
  .product-copy p {
    width: min(21rem, calc(100vw - 2.8rem));
    max-width: min(21rem, calc(100vw - 2.8rem));
  }
  .hero-lede {
    font-size: 1rem;
  }
  .hero-visual {
    min-height: 23rem;
  }
  .preview-linggen {
    right: 0;
    width: 68%;
  }
  .preview-zappi {
    width: 92%;
  }
  .intro p {
    font-size: clamp(1.55rem, 11vw, 3rem);
  }
  .product-copy h3 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }
  .button,
  .product-link {
    width: 100%;
  }
}
