:root {
  --ink: #17211d;
  --muted: #5c6861;
  --paper: #fbfaf5;
  --rice: #f4efe3;
  --matcha: #59715e;
  --bamboo: #d7dfc8;
  --sumi: #26352f;
  --beni: #c3483a;
  --persimmon: #e6a044;
  --indigo: #283c63;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(38, 53, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(195, 72, 58, 0.16), transparent 25rem),
    radial-gradient(circle at 12% 42%, rgba(230, 160, 68, 0.11), transparent 23rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 46%, #edf1e7 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black, transparent 70%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: -7px;
  width: 160px;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--beni) 0 18px, transparent 18px 26px);
  opacity: 0.84;
}

.brand,
.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  display: block;
  width: clamp(154px, 18vw, 230px);
  height: auto;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--beni);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.nav-action,
.primary-button,
.secondary-button,
.signup-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.nav-action,
.primary-button,
.signup-form button {
  color: #fff;
  background: var(--sumi);
  box-shadow: 0 12px 30px rgba(38, 53, 47, 0.18);
}

.primary-button,
.nav-action {
  background: linear-gradient(135deg, var(--sumi), var(--indigo));
}

.nav-action {
  padding: 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--beni);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  animation: heroTextIn 900ms cubic-bezier(0.2, 0.72, 0.22, 1) 120ms both;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-text,
.section p,
.launch p,
footer {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
  animation: heroTextIn 950ms cubic-bezier(0.2, 0.72, 0.22, 1) 320ms both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  h1,
  .hero-text {
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.secondary-button {
  color: var(--sumi);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--matcha);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.rising-sun {
  position: absolute;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  right: 2%;
  top: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.32) 0 2px, transparent 2px 22px),
    linear-gradient(145deg, #cf4338, #f2b25d);
  opacity: 0.9;
}

.vertical-seal {
  position: absolute;
  top: 24px;
  left: 10px;
  z-index: 2;
  padding: 14px 10px;
  color: var(--beni);
  background: rgba(255, 253, 248, 0.82);
  border: 2px solid currentColor;
  border-radius: 4px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
  writing-mode: vertical-rl;
  box-shadow: 0 14px 30px rgba(38, 53, 47, 0.1);
}

.phone-card,
.basket-art,
.app-panel,
.feature-card,
.step,
.launch {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 33, 29, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.phone-card {
  position: absolute;
  top: 58px;
  right: 6%;
  width: min(86%, 360px);
  padding: 22px;
  border-radius: 24px;
}

.phone-top,
.order-summary,
.waste-meter > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phone-top {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meal-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(rgba(244, 239, 227, 0.9), rgba(244, 239, 227, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(89, 113, 94, 0.12) 12px 14px);
  border-radius: 20px;
}

.meal-card p,
.app-header p,
.chat-bubble,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.meal-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--matcha);
  border-radius: 16px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-weight: 900;
}

.grocery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}

.grocery-list span {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.waste-meter {
  padding: 16px;
  background: #edf4ea;
  border-radius: 18px;
}

.waste-meter span {
  color: var(--muted);
  font-size: 0.82rem;
}

.waste-meter strong {
  color: var(--matcha);
  font-size: 1.45rem;
}

.meter-track {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(89, 113, 94, 0.18);
  border-radius: 999px;
}

.meter-track span {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--matcha);
  border-radius: inherit;
}

.basket-art {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: min(74%, 360px);
  padding: 22px;
  border-radius: 8px;
  transform: rotate(-4deg);
}

.basket-art svg {
  display: block;
  width: 100%;
}

.basket-handle {
  fill: none;
  stroke: #73513b;
  stroke-width: 16;
  stroke-linecap: round;
}

.basket-body {
  fill: #c99b61;
}

.tomato {
  fill: #c3483a;
}

.orange {
  fill: #e6a044;
}

.leaf,
.greens {
  fill: #59715e;
}

.fish {
  fill: #f2b7a1;
}

.fish-eye {
  fill: #17211d;
}

.rice {
  fill: #fffdf8;
}

.rice-label {
  stroke: #c3483a;
  stroke-width: 7;
  stroke-linecap: round;
}

.section {
  padding: 82px clamp(20px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 34px;
  align-items: end;
  background:
    linear-gradient(rgba(38, 53, 47, 0.94), rgba(38, 53, 47, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 253, 248, 0.12) 42px 44px);
}

.intro-band h2,
.intro-band p {
  color: #fffdf8;
}

.vision-title {
  margin-bottom: 10px;
  color: #f2b25d;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(4.8rem, 13vw, 13rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.vision-line {
  margin: 0;
  color: #fffdf8;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-size: clamp(1.35rem, 2.7vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
}

.intro-band > p {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.74);
}

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

.feature-card {
  min-height: 340px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::after,
.step::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(195, 72, 58, 0.42);
  border-radius: 50%;
  opacity: 0.7;
}

.feature-number {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 52px;
  place-items: center;
  color: var(--beni);
  background: rgba(195, 72, 58, 0.08);
  border: 1px solid rgba(195, 72, 58, 0.24);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
}

.delivery,
.app-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 8px;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  place-items: center;
  color: #fff;
  background: var(--beni);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.app-section {
  background:
    linear-gradient(rgba(233, 238, 226, 0.92), rgba(233, 238, 226, 0.92)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(40, 60, 99, 0.08) 34px 36px);
}

.app-panel {
  width: min(100%, 480px);
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
}

.app-header {
  margin-bottom: 28px;
}

.chat-bubble {
  max-width: 86%;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 20px;
}

.chat-bubble.user {
  margin-left: auto;
  color: #fff;
  background: var(--indigo);
  border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
  background: var(--rice);
  border-bottom-left-radius: 4px;
}

.order-summary {
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-summary strong {
  font-size: 1.8rem;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: center;
  margin: 82px clamp(20px, 5vw, 72px);
  padding: clamp(26px, 5vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 239, 227, 0.86)),
    repeating-linear-gradient(90deg, rgba(195, 72, 58, 0.08) 0 22px, transparent 22px 44px);
}

.contact-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(244, 239, 227, 0.94), rgba(233, 238, 226, 0.94)),
    repeating-linear-gradient(90deg, rgba(89, 113, 94, 0.08) 0 22px, transparent 22px 44px);
}

.contact-copy .eyebrow {
  color: var(--beni);
  font-size: 0.76rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 5.2rem);
}

.contact-copy p,
.contact-meta {
  color: var(--muted);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-meta span {
  padding: 9px 12px;
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-section .signup-form {
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(23, 33, 29, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(38, 53, 47, 0.12);
}

.signup-form {
  display: grid;
  gap: 14px;
}

.signup-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.signup-form textarea {
  min-height: 132px;
  padding-top: 14px;
  line-height: 1.6;
  resize: vertical;
}

.signup-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.blog-section {
  padding-top: 18px;
  padding-bottom: 96px;
}

.blog-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
}

footer {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

@media (max-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero,
  .intro-band,
  .feature-grid,
  .delivery,
  .app-section,
  .launch {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .feature-number {
    margin-bottom: 44px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .step span {
    margin-bottom: 28px;
  }

  .vision-title {
    font-size: clamp(4.6rem, 18vw, 8rem);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 146px;
  }

  .nav-action {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-visual {
    min-height: 510px;
  }

  .phone-card {
    right: 0;
    width: 94%;
  }

  .basket-art {
    width: 70%;
  }

  .grocery-list {
    grid-template-columns: 1fr;
  }

  .launch {
    margin-left: 16px;
    margin-right: 16px;
  }

  footer {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }
}
